|
@ -18,6 +18,7 @@ public class BaseProcessGuidanceDO extends UuidIdentityEntityWithCreateTime {
|
|
|
|
|
|
private String name;
|
|
private String name;
|
|
private Integer status;//状态(1生效 0失效)
|
|
private Integer status;//状态(1生效 0失效)
|
|
|
|
private Integer isAllDept;//是否全部科室 1是0否
|
|
private String statusName;
|
|
private String statusName;
|
|
|
|
|
|
private List<BaseProcessGuidanceDeptDO> deptDOList;//关联部门
|
|
private List<BaseProcessGuidanceDeptDO> deptDOList;//关联部门
|
|
@ -41,6 +42,15 @@ public class BaseProcessGuidanceDO extends UuidIdentityEntityWithCreateTime {
|
|
this.status = status;
|
|
this.status = status;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@Column(name = "is_all_dept")
|
|
|
|
public Integer getIsAllDept() {
|
|
|
|
return isAllDept;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setIsAllDept(Integer isAllDept) {
|
|
|
|
this.isAllDept = isAllDept;
|
|
|
|
}
|
|
|
|
|
|
@Transient
|
|
@Transient
|
|
public String getStatusName() {
|
|
public String getStatusName() {
|
|
return statusName;
|
|
return statusName;
|