]> git.ktnx.net Git - mobile-ledger.git/blob - app/src/main/java/net/ktnx/mobileledger/db/AccountValue.java
f41b0e73ddce51c641cbd258dafa7bd4b81a7910
[mobile-ledger.git] / app / src / main / java / net / ktnx / mobileledger / db / AccountValue.java
1 /*
2  * Copyright © 2021 Damyan Ivanov.
3  * This file is part of MoLe.
4  * MoLe is free software: you can distribute it and/or modify it
5  * under the term of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your opinion), any later version.
8  *
9  * MoLe is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License terms for details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with MoLe. If not, see <https://www.gnu.org/licenses/>.
16  */
17
18 package net.ktnx.mobileledger.db;
19
20 import androidx.annotation.NonNull;
21 import androidx.room.ColumnInfo;
22 import androidx.room.Entity;
23
24 /*
25 create table account_values(profile varchar not null, account varchar not null, currency varchar
26 not null default '', value decimal not null, generation integer default 0 );
27 create unique index un_account_values on account_values(profile,account,currency);
28  */
29 @Entity(tableName = "account_values", primaryKeys = {"profile", "account", "currency"})
30 public class AccountValue {
31     @ColumnInfo
32     @NonNull
33     private String profile;
34     @ColumnInfo
35     @NonNull
36     private String account;
37     @NonNull
38     @ColumnInfo(defaultValue = "")
39     private String currency = "";
40     @ColumnInfo
41     private float value;
42     @ColumnInfo(defaultValue = "0")
43     private int generation = 0;
44     @NonNull
45     public String getProfile() {
46         return profile;
47     }
48     public void setProfile(@NonNull String profile) {
49         this.profile = profile;
50     }
51     @NonNull
52     public String getAccount() {
53         return account;
54     }
55     public void setAccount(@NonNull String account) {
56         this.account = account;
57     }
58     @NonNull
59     public String getCurrency() {
60         return currency;
61     }
62     public void setCurrency(@NonNull String currency) {
63         this.currency = currency;
64     }
65     public float getValue() {
66         return value;
67     }
68     public void setValue(float value) {
69         this.value = value;
70     }
71     public int getGeneration() {
72         return generation;
73     }
74     public void setGeneration(int generation) {
75         this.generation = generation;
76     }
77 }