|
@ -52,7 +52,14 @@ public class IotPatientDeviceDO extends UuidIdentityEntityWithOperator implement
|
|
|
private String hospitalName;//归属社区名称
|
|
|
@Column(name = "imgs")
|
|
|
private String imgs;//领用协议,多个用逗号隔开
|
|
|
|
|
|
@Column(name = "status")
|
|
|
private Integer status;//维修状态(1待维护 2已报修 3厂家接收 4厂家寄回 5待更换 6已更换)
|
|
|
@Column(name = "damage_description")
|
|
|
private String damageDescription;//损坏说明
|
|
|
@Column(name = "damage_images")
|
|
|
private String damageImages;//申请维修附件图片,多个用逗号隔开
|
|
|
@Column(name = "repair_description")
|
|
|
private String repairDescription;//维修说明
|
|
|
|
|
|
public String getSaasId() {
|
|
|
return saasId;
|
|
@ -197,4 +204,36 @@ public class IotPatientDeviceDO extends UuidIdentityEntityWithOperator implement
|
|
|
public void setImgs(String imgs) {
|
|
|
this.imgs = imgs;
|
|
|
}
|
|
|
|
|
|
public Integer getStatus() {
|
|
|
return status;
|
|
|
}
|
|
|
|
|
|
public void setStatus(Integer status) {
|
|
|
this.status = status;
|
|
|
}
|
|
|
|
|
|
public String getDamageDescription() {
|
|
|
return damageDescription;
|
|
|
}
|
|
|
|
|
|
public void setDamageDescription(String damageDescription) {
|
|
|
this.damageDescription = damageDescription;
|
|
|
}
|
|
|
|
|
|
public String getDamageImages() {
|
|
|
return damageImages;
|
|
|
}
|
|
|
|
|
|
public void setDamageImages(String damageImages) {
|
|
|
this.damageImages = damageImages;
|
|
|
}
|
|
|
|
|
|
public String getRepairDescription() {
|
|
|
return repairDescription;
|
|
|
}
|
|
|
|
|
|
public void setRepairDescription(String repairDescription) {
|
|
|
this.repairDescription = repairDescription;
|
|
|
}
|
|
|
}
|