|
@@ -1,12 +1,12 @@
|
|
|
package com.diagbot.entity;
|
|
|
|
|
|
-import java.io.Serializable;
|
|
|
-import java.util.Date;
|
|
|
-
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
/**
|
|
|
* <p>
|
|
|
* 医院科室信息表
|
|
@@ -72,9 +72,9 @@ public class HospitalDept implements Serializable {
|
|
|
private String hospitalName;
|
|
|
|
|
|
/**
|
|
|
- * icss科室id
|
|
|
+ * icss科室名称
|
|
|
*/
|
|
|
- private Long deptId;
|
|
|
+ private String icssDeptName;
|
|
|
|
|
|
/**
|
|
|
* 状态:0.禁用1.启用
|
|
@@ -156,13 +156,15 @@ public class HospitalDept implements Serializable {
|
|
|
public void setHospitalName(String hospitalName) {
|
|
|
this.hospitalName = hospitalName;
|
|
|
}
|
|
|
- public Long getDeptId() {
|
|
|
- return deptId;
|
|
|
+
|
|
|
+ public String getIcssDeptName() {
|
|
|
+ return icssDeptName;
|
|
|
}
|
|
|
|
|
|
- public void setDeptId(Long deptId) {
|
|
|
- this.deptId = deptId;
|
|
|
+ public void setIcssDeptName(String icssDeptName) {
|
|
|
+ this.icssDeptName = icssDeptName;
|
|
|
}
|
|
|
+
|
|
|
public Integer getStatus() {
|
|
|
return status;
|
|
|
}
|
|
@@ -191,7 +193,7 @@ public class HospitalDept implements Serializable {
|
|
|
", name=" + name +
|
|
|
", hospitalCode=" + hospitalCode +
|
|
|
", hospitalName=" + hospitalName +
|
|
|
- ", deptId=" + deptId +
|
|
|
+ ", deptId=" + icssDeptName +
|
|
|
", status=" + status +
|
|
|
", remark=" + remark +
|
|
|
"}";
|