|
@@ -38,10 +38,12 @@ public class SysRole extends BaseEntity {
|
|
|
@Schema(description = "别名")
|
|
|
@NotBlank(groups = Create.class)
|
|
|
@Size(max = 30)
|
|
|
+ @TableField(condition = SqlCondition.LIKE)
|
|
|
private String alias;
|
|
|
|
|
|
@Schema(description = "备注")
|
|
|
@Size(max = 255)
|
|
|
+ @TableField(condition = SqlCondition.LIKE)
|
|
|
private String remark;
|
|
|
|
|
|
@Schema(description = "状态 0、禁用 1、正常")
|