|
@@ -30,6 +30,10 @@ public class BedDeviceInfoVO extends DeviceVO {
|
|
|
@ApiModelProperty(value = "病人id", required = false)
|
|
|
private Integer customerId;
|
|
|
|
|
|
+ @Column(name = "part_display")
|
|
|
+ @ApiModelProperty(value = "科室显示名称(科室全称字段)", required = false)
|
|
|
+ private String partDisplay;
|
|
|
+
|
|
|
public Integer getHospitalId() {
|
|
|
return hospitalId;
|
|
|
}
|
|
@@ -61,4 +65,12 @@ public class BedDeviceInfoVO extends DeviceVO {
|
|
|
public void setCustomerId(Integer customerId) {
|
|
|
this.customerId = customerId;
|
|
|
}
|
|
|
+
|
|
|
+ public String getPartDisplay() {
|
|
|
+ return partDisplay;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPartDisplay(String partDisplay) {
|
|
|
+ this.partDisplay = partDisplay;
|
|
|
+ }
|
|
|
}
|