刘小明
2024-09-12 eb0bb9455b6e8726ef9650f382daf7fc073fc5f8
pms-parent/pms-global/src/main/java/com/dy/pmsGlobal/pojoBa/BaPrivilege.java
@@ -48,7 +48,7 @@
    * 权限名称
    */
    @NotEmpty(message = "权限名称不能为空") //不能为空也不能为null
    @Length(message = "权限名称不大于{max}字,不小于{min}字", min = 2, max = 25)
    @Length(message = "权限名称不大于{max}字,不小于{min}字", min = 2, max = 50)
    public String name;
    /**
@@ -58,4 +58,11 @@
    @Length(message = "权限类型不大于{max}字,不小于{min}字", min = 4, max = 4)
    public Integer type;
    /**
     * 类别名称
     */
    @NotEmpty(message = "类别名称不能为空") //不能为空也不能为null
    @Length(message = "权限类型不大于{max}字,不小于{min}字", min = 3, max = 6)
    public String typeName;
}