|
@ -56,6 +56,8 @@ public class DevicePatientHealthIndex extends IdEntity {
|
|
|
private String name;//居民姓名
|
|
|
private String hospital;//医院
|
|
|
private String hospitalName;//医院名称
|
|
|
private String dept;//科室code
|
|
|
private String deptName;//科室名称
|
|
|
|
|
|
private Integer isUpload;//是否上传物联网 0和null否 1是,2失败
|
|
|
|
|
@ -258,4 +260,20 @@ public class DevicePatientHealthIndex extends IdEntity {
|
|
|
public void setIsUpload(Integer isUpload) {
|
|
|
this.isUpload = isUpload;
|
|
|
}
|
|
|
|
|
|
public String getDept() {
|
|
|
return dept;
|
|
|
}
|
|
|
|
|
|
public void setDept(String dept) {
|
|
|
this.dept = dept;
|
|
|
}
|
|
|
|
|
|
public String getDeptName() {
|
|
|
return deptName;
|
|
|
}
|
|
|
|
|
|
public void setDeptName(String deptName) {
|
|
|
this.deptName = deptName;
|
|
|
}
|
|
|
}
|