fix 修复 部门实体与 bo vo 排序字段类型不匹配

This commit is contained in:
疯狂的狮子li 2023-02-09 17:57:57 +08:00
parent a84b62a0c1
commit 4bfeebef0f
2 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ public class SysDeptBo extends BaseEntity {
* 显示顺序 * 显示顺序
*/ */
@NotNull(message = "显示顺序不能为空") @NotNull(message = "显示顺序不能为空")
private Long orderNum; private Integer orderNum;
/** /**
* 负责人 * 负责人

View File

@ -52,7 +52,7 @@ public class SysDeptVo implements Serializable {
/** /**
* 显示顺序 * 显示顺序
*/ */
private Long orderNum; private Integer orderNum;
/** /**
* 负责人 * 负责人