mirror of
https://github.com/jfoucry/Pilldroid.git
synced 2024-11-22 04:29:22 +01:00
add 2 columns
This commit is contained in:
parent
7f89c9b5aa
commit
891368f5d7
1 changed files with 16 additions and 1 deletions
|
@ -23,7 +23,8 @@ public class Prescription implements Serializable {
|
||||||
private Integer warning;
|
private Integer warning;
|
||||||
private Integer alert;
|
private Integer alert;
|
||||||
private Long last_update;
|
private Long last_update;
|
||||||
|
private String label_group;
|
||||||
|
private Integer genetic_type;
|
||||||
|
|
||||||
public void setCis(@NonNull String cis)
|
public void setCis(@NonNull String cis)
|
||||||
{
|
{
|
||||||
|
@ -113,7 +114,21 @@ public class Prescription implements Serializable {
|
||||||
public int getWarnThreshold() {
|
public int getWarnThreshold() {
|
||||||
return this.warning;
|
return this.warning;
|
||||||
}
|
}
|
||||||
|
public String getLabel_group() {
|
||||||
|
return label_group;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLabel_group(String label_group) {
|
||||||
|
this.label_group = label_group;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getGenetic_type() {
|
||||||
|
return genetic_type;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setGenetic_type(Integer genetic_type) {
|
||||||
|
this.genetic_type = genetic_type;
|
||||||
|
}
|
||||||
public Date getDateEndOfStock() {
|
public Date getDateEndOfStock() {
|
||||||
int numberDayOfTake;
|
int numberDayOfTake;
|
||||||
if (this.getTake() > 0) {
|
if (this.getTake() > 0) {
|
||||||
|
|
Loading…
Reference in a new issue