|
@@ -66,6 +66,12 @@ public class BasDeptInfo implements Serializable {
|
|
|
*/
|
|
|
private Date gmtModified;
|
|
|
|
|
|
+ /**
|
|
|
+ * 院区id
|
|
|
+ */
|
|
|
+ private Long hospitalCampusId;
|
|
|
+
|
|
|
+
|
|
|
/**
|
|
|
* 创建人,0表示无创建人值
|
|
|
*/
|
|
@@ -160,22 +166,30 @@ public class BasDeptInfo implements Serializable {
|
|
|
public void setModifier(String modifier) {
|
|
|
this.modifier = modifier;
|
|
|
}
|
|
|
+ public Long getHospitalCampusId() {
|
|
|
+ return hospitalCampusId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHospitalCampusId(Long hospitalCampusId) {
|
|
|
+ this.hospitalCampusId = hospitalCampusId;
|
|
|
+ }
|
|
|
|
|
|
@Override
|
|
|
public String toString() {
|
|
|
return "BasDeptInfo{" +
|
|
|
- "deptId=" + deptId +
|
|
|
- ", hospitalId=" + hospitalId +
|
|
|
- ", parentDeptId=" + parentDeptId +
|
|
|
- ", deptName=" + deptName +
|
|
|
- ", deptType=" + deptType +
|
|
|
- ", spell=" + spell +
|
|
|
- ", station=" + station +
|
|
|
- ", isDeleted=" + isDeleted +
|
|
|
- ", gmtCreate=" + gmtCreate +
|
|
|
- ", gmtModified=" + gmtModified +
|
|
|
- ", creator=" + creator +
|
|
|
- ", modifier=" + modifier +
|
|
|
- "}";
|
|
|
+ "deptId='" + deptId + '\'' +
|
|
|
+ ", hospitalId=" + hospitalId +
|
|
|
+ ", parentDeptId='" + parentDeptId + '\'' +
|
|
|
+ ", deptName='" + deptName + '\'' +
|
|
|
+ ", deptType='" + deptType + '\'' +
|
|
|
+ ", spell='" + spell + '\'' +
|
|
|
+ ", station='" + station + '\'' +
|
|
|
+ ", isDeleted='" + isDeleted + '\'' +
|
|
|
+ ", gmtCreate=" + gmtCreate +
|
|
|
+ ", gmtModified=" + gmtModified +
|
|
|
+ ", hospitalCampusId=" + hospitalCampusId +
|
|
|
+ ", creator='" + creator + '\'' +
|
|
|
+ ", modifier='" + modifier + '\'' +
|
|
|
+ '}';
|
|
|
}
|
|
|
}
|