Browse Source

代码修改

LAPTOP-KB9HII50\70708 1 year ago
parent
commit
87bcf8b493

+ 21 - 0
common/common-entity/src/main/java/com/yihu/jw/entity/care/device/DevicePatientDevice.java

@ -89,6 +89,9 @@ public class DevicePatientDevice extends IdEntity {
     */
    private String safeAreaGz;
    private String dept;//绑定时的投放科室
    private String deptName;//
    @Column(name = "device_id")
    public Long getDeviceId() {
        return deviceId;
@ -361,4 +364,22 @@ public class DevicePatientDevice extends IdEntity {
    public void setSafeAreaGz(String safeAreaGz) {
        this.safeAreaGz = safeAreaGz;
    }
    @Column(name = "dept")
    public String getDept() {
        return dept;
    }
    public void setDept(String dept) {
        this.dept = dept;
    }
    @Column(name = "dept_name")
    public String getDeptName() {
        return deptName;
    }
    public void setDeptName(String deptName) {
        this.deptName = deptName;
    }
}

+ 18 - 0
common/common-entity/src/main/java/com/yihu/jw/entity/care/device/DevicePatientHealthIndex.java

@ -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;
	}
}