|
@@ -12,7 +12,7 @@ import java.util.Date;
|
|
|
* </p>
|
|
|
*
|
|
|
* @author gaodm
|
|
|
- * @since 2020-04-13
|
|
|
+ * @since 2020-05-27
|
|
|
*/
|
|
|
public class QcType implements Serializable {
|
|
|
|
|
@@ -24,6 +24,11 @@ public class QcType implements Serializable {
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
|
private Long id;
|
|
|
|
|
|
+ /**
|
|
|
+ * 医院ID
|
|
|
+ */
|
|
|
+ private Long hospitalId;
|
|
|
+
|
|
|
/**
|
|
|
* 质控类型名称
|
|
|
*/
|
|
@@ -67,6 +72,14 @@ public class QcType implements Serializable {
|
|
|
this.id = id;
|
|
|
}
|
|
|
|
|
|
+ public Long getHospitalId() {
|
|
|
+ return hospitalId;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setHospitalId(Long hospitalId) {
|
|
|
+ this.hospitalId = hospitalId;
|
|
|
+ }
|
|
|
+
|
|
|
public String getName() {
|
|
|
return name;
|
|
|
}
|
|
@@ -127,6 +140,7 @@ public class QcType implements Serializable {
|
|
|
public String toString() {
|
|
|
return "QcType{" +
|
|
|
"id=" + id +
|
|
|
+ ", hospitalId=" + hospitalId +
|
|
|
", name=" + name +
|
|
|
", remark=" + remark +
|
|
|
", isDeleted=" + isDeleted +
|