mirror of
https://github.com/jfoucry/Pilldroid.git
synced 2024-11-22 04:29:22 +01:00
use correct import
add getters and setters
This commit is contained in:
parent
bed4186bc3
commit
88c534e719
1 changed files with 101 additions and 7 deletions
|
@ -1,13 +1,13 @@
|
||||||
package net.foucry.pilldroid.models;
|
package net.foucry.pilldroid.models;
|
||||||
|
|
||||||
import android.arch.persitence.room.Entity;
|
import androidx.room.Entity;
|
||||||
import android.arch.persitence.room.PrimaryKey;
|
import androidx.room.PrimaryKey;
|
||||||
import android.support.annotation.NonNull;
|
import androidx.annotation.NonNull;
|
||||||
|
|
||||||
@Entity(tableName = "medics")
|
@Entity(tableName = "medics")
|
||||||
public class medic {
|
public class Medic {
|
||||||
@PrimaryKey
|
@PrimaryKey
|
||||||
@NonNull private Long id;
|
@NonNull private final Integer id;
|
||||||
private String cis;
|
private String cis;
|
||||||
private String cip13;
|
private String cip13;
|
||||||
private String name;
|
private String name;
|
||||||
|
@ -15,8 +15,102 @@ public class medic {
|
||||||
private String presentation;
|
private String presentation;
|
||||||
private Long stock;
|
private Long stock;
|
||||||
private Long take;
|
private Long take;
|
||||||
private Int warning;
|
private Integer warning;
|
||||||
private Int alert;
|
private Integer alert;
|
||||||
private Long last_update;
|
private Long last_update;
|
||||||
|
|
||||||
|
public Medic(@NonNull Integer id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCis(String cis)
|
||||||
|
{
|
||||||
|
this.cis = cis;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public void setCip13(String cip13) {
|
||||||
|
this.cip13 = cip13;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAdministration_mode(String administration_mode) {
|
||||||
|
|
||||||
|
this.administration_mode = administration_mode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPresentation(String presentation) {
|
||||||
|
this.presentation = presentation;
|
||||||
|
}
|
||||||
|
public void setStock(Long stock) {
|
||||||
|
this.stock = stock;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTake(Long take) {
|
||||||
|
this.take = take;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWarning(Integer warning) {
|
||||||
|
this.warning = warning;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAlert(Integer alert) {
|
||||||
|
this.alert = alert;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setLast_update(Long last_update) {
|
||||||
|
this.last_update = last_update;
|
||||||
|
}
|
||||||
|
|
||||||
|
@NonNull
|
||||||
|
Integer getId() {
|
||||||
|
return this.id;
|
||||||
|
}
|
||||||
|
|
||||||
|
String getCis() {
|
||||||
|
return this.cis;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getWarning() {
|
||||||
|
return warning;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getCip13() {
|
||||||
|
return cip13;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAdministration_mode() {
|
||||||
|
return administration_mode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPresentation() {
|
||||||
|
return presentation;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getStock() {
|
||||||
|
return stock;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getTake() {
|
||||||
|
return take;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getAlert() {
|
||||||
|
return alert;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Long getLast_update() {
|
||||||
|
return last_update;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue