This commit is contained in:
hanjian
2024-09-08 20:32:22 +08:00
parent 5607c957fb
commit b69682c2d0
6 changed files with 76 additions and 1 deletions

View File

@@ -31,6 +31,8 @@ public class SysDept extends BaseEntity
/** 部门名称 */
private String deptName;
private String deptType;
/** 显示顺序 */
private Integer orderNum;
@@ -97,6 +99,16 @@ public class SysDept extends BaseEntity
this.deptName = deptName;
}
public String getDeptType()
{
return deptType;
}
public void setDeptType(String deptType)
{
this.deptType = deptType;
}
@NotNull(message = "显示顺序不能为空")
public Integer getOrderNum()
{