|
@@ -44,6 +44,10 @@ public class DeviceRoomInfoVO extends DeviceDO implements Serializable {
|
|
|
@ApiModelProperty(value = "角色名称", required = false)
|
|
|
private String roleName;
|
|
|
|
|
|
+ @Column(name = "part_display")
|
|
|
+ @ApiModelProperty(value = "科室显示名称(科室全称字段)", required = false)
|
|
|
+ private String partDisplay;
|
|
|
+
|
|
|
|
|
|
public Integer getHospitalId() {
|
|
|
return hospitalId;
|
|
@@ -100,4 +104,12 @@ public class DeviceRoomInfoVO extends DeviceDO implements Serializable {
|
|
|
public void setRoleName(String roleName) {
|
|
|
this.roleName = roleName;
|
|
|
}
|
|
|
+
|
|
|
+ public String getPartDisplay() {
|
|
|
+ return partDisplay;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPartDisplay(String partDisplay) {
|
|
|
+ this.partDisplay = partDisplay;
|
|
|
+ }
|
|
|
}
|