|
@@ -37,7 +37,27 @@ public class QcType implements Serializable {
|
|
/**
|
|
/**
|
|
* 默认模版是否开启(0-否 1-是)
|
|
* 默认模版是否开启(0-否 1-是)
|
|
*/
|
|
*/
|
|
- private Long defaultModule;
|
|
|
|
|
|
+ private Integer defaultModule;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 父类质控id
|
|
|
|
+ */
|
|
|
|
+ private String parentTypeId;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 性别
|
|
|
|
+ */
|
|
|
|
+ private String sex;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 科室ID
|
|
|
|
+ */
|
|
|
|
+ private String behDeptId;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 科室名称
|
|
|
|
+ */
|
|
|
|
+ private String behDeptName;
|
|
|
|
|
|
/**
|
|
/**
|
|
* 备注
|
|
* 备注
|
|
@@ -76,7 +96,6 @@ public class QcType implements Serializable {
|
|
public void setId(Long id) {
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
this.id = id;
|
|
}
|
|
}
|
|
-
|
|
|
|
public Long getHospitalId() {
|
|
public Long getHospitalId() {
|
|
return hospitalId;
|
|
return hospitalId;
|
|
}
|
|
}
|
|
@@ -84,7 +103,6 @@ public class QcType implements Serializable {
|
|
public void setHospitalId(Long hospitalId) {
|
|
public void setHospitalId(Long hospitalId) {
|
|
this.hospitalId = hospitalId;
|
|
this.hospitalId = hospitalId;
|
|
}
|
|
}
|
|
-
|
|
|
|
public String getName() {
|
|
public String getName() {
|
|
return name;
|
|
return name;
|
|
}
|
|
}
|
|
@@ -92,7 +110,41 @@ public class QcType implements Serializable {
|
|
public void setName(String name) {
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
this.name = name;
|
|
}
|
|
}
|
|
|
|
+ public Integer getDefaultModule() {
|
|
|
|
+ return defaultModule;
|
|
|
|
+ }
|
|
|
|
|
|
|
|
+ public void setDefaultModule(Integer defaultModule) {
|
|
|
|
+ this.defaultModule = defaultModule;
|
|
|
|
+ }
|
|
|
|
+ public String getParentTypeId() {
|
|
|
|
+ return parentTypeId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setParentTypeId(String parentTypeId) {
|
|
|
|
+ this.parentTypeId = parentTypeId;
|
|
|
|
+ }
|
|
|
|
+ public String getSex() {
|
|
|
|
+ return sex;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setSex(String sex) {
|
|
|
|
+ this.sex = sex;
|
|
|
|
+ }
|
|
|
|
+ public String getBehDeptId() {
|
|
|
|
+ return behDeptId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setBehDeptId(String behDeptId) {
|
|
|
|
+ this.behDeptId = behDeptId;
|
|
|
|
+ }
|
|
|
|
+ public String getBehDeptName() {
|
|
|
|
+ return behDeptName;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setBehDeptName(String behDeptName) {
|
|
|
|
+ this.behDeptName = behDeptName;
|
|
|
|
+ }
|
|
public String getRemark() {
|
|
public String getRemark() {
|
|
return remark;
|
|
return remark;
|
|
}
|
|
}
|
|
@@ -100,7 +152,6 @@ public class QcType implements Serializable {
|
|
public void setRemark(String remark) {
|
|
public void setRemark(String remark) {
|
|
this.remark = remark;
|
|
this.remark = remark;
|
|
}
|
|
}
|
|
-
|
|
|
|
public String getIsDeleted() {
|
|
public String getIsDeleted() {
|
|
return isDeleted;
|
|
return isDeleted;
|
|
}
|
|
}
|
|
@@ -108,7 +159,6 @@ public class QcType implements Serializable {
|
|
public void setIsDeleted(String isDeleted) {
|
|
public void setIsDeleted(String isDeleted) {
|
|
this.isDeleted = isDeleted;
|
|
this.isDeleted = isDeleted;
|
|
}
|
|
}
|
|
-
|
|
|
|
public Date getGmtCreate() {
|
|
public Date getGmtCreate() {
|
|
return gmtCreate;
|
|
return gmtCreate;
|
|
}
|
|
}
|
|
@@ -116,7 +166,6 @@ public class QcType implements Serializable {
|
|
public void setGmtCreate(Date gmtCreate) {
|
|
public void setGmtCreate(Date gmtCreate) {
|
|
this.gmtCreate = gmtCreate;
|
|
this.gmtCreate = gmtCreate;
|
|
}
|
|
}
|
|
-
|
|
|
|
public Date getGmtModified() {
|
|
public Date getGmtModified() {
|
|
return gmtModified;
|
|
return gmtModified;
|
|
}
|
|
}
|
|
@@ -124,7 +173,6 @@ public class QcType implements Serializable {
|
|
public void setGmtModified(Date gmtModified) {
|
|
public void setGmtModified(Date gmtModified) {
|
|
this.gmtModified = gmtModified;
|
|
this.gmtModified = gmtModified;
|
|
}
|
|
}
|
|
-
|
|
|
|
public String getCreator() {
|
|
public String getCreator() {
|
|
return creator;
|
|
return creator;
|
|
}
|
|
}
|
|
@@ -132,7 +180,6 @@ public class QcType implements Serializable {
|
|
public void setCreator(String creator) {
|
|
public void setCreator(String creator) {
|
|
this.creator = creator;
|
|
this.creator = creator;
|
|
}
|
|
}
|
|
-
|
|
|
|
public String getModifier() {
|
|
public String getModifier() {
|
|
return modifier;
|
|
return modifier;
|
|
}
|
|
}
|
|
@@ -141,14 +188,6 @@ public class QcType implements Serializable {
|
|
this.modifier = modifier;
|
|
this.modifier = modifier;
|
|
}
|
|
}
|
|
|
|
|
|
- public Long getDefaultModule() {
|
|
|
|
- return defaultModule;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setDefaultModule(Long defaultModule) {
|
|
|
|
- this.defaultModule = defaultModule;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
@Override
|
|
@Override
|
|
public String toString() {
|
|
public String toString() {
|
|
return "QcType{" +
|
|
return "QcType{" +
|
|
@@ -156,6 +195,10 @@ public class QcType implements Serializable {
|
|
", hospitalId=" + hospitalId +
|
|
", hospitalId=" + hospitalId +
|
|
", name=" + name +
|
|
", name=" + name +
|
|
", defaultModule=" + defaultModule +
|
|
", defaultModule=" + defaultModule +
|
|
|
|
+ ", parentTypeId=" + parentTypeId +
|
|
|
|
+ ", sex=" + sex +
|
|
|
|
+ ", behDeptId=" + behDeptId +
|
|
|
|
+ ", behDeptName=" + behDeptName +
|
|
", remark=" + remark +
|
|
", remark=" + remark +
|
|
", isDeleted=" + isDeleted +
|
|
", isDeleted=" + isDeleted +
|
|
", gmtCreate=" + gmtCreate +
|
|
", gmtCreate=" + gmtCreate +
|