|
@@ -1,5 +1,6 @@
|
|
|
package com.zd.laboratory.domain;
|
|
package com.zd.laboratory.domain;
|
|
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.zd.model.annotation.Excel;
|
|
import com.zd.model.annotation.Excel;
|
|
|
import com.zd.model.entity.BaseEntity;
|
|
import com.zd.model.entity.BaseEntity;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
import io.swagger.annotations.ApiModel;
|
|
@@ -67,6 +68,9 @@ public class LabRiskPlanAbnormalGroup extends BaseEntity {
|
|
|
@Excel(name = "是否查看预案 0否 1是")
|
|
@Excel(name = "是否查看预案 0否 1是")
|
|
|
private Integer ifCheck;
|
|
private Integer ifCheck;
|
|
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "学院名称")
|
|
|
|
|
+ @TableField(exist = false)
|
|
|
|
|
+ private String deptName;
|
|
|
|
|
|
|
|
public Long getId() {
|
|
public Long getId() {
|
|
|
return id;
|
|
return id;
|
|
@@ -131,4 +135,14 @@ public class LabRiskPlanAbnormalGroup extends BaseEntity {
|
|
|
public void setIfCheck(Integer ifCheck) {
|
|
public void setIfCheck(Integer ifCheck) {
|
|
|
this.ifCheck = ifCheck;
|
|
this.ifCheck = ifCheck;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public String getDeptName() {
|
|
|
|
|
+ return deptName;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public void setDeptName(String deptName) {
|
|
|
|
|
+ this.deptName = deptName;
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|