Merge pull request #88 from fish8848-chen/role_bug

fix(RoleForm): 新增编辑排序和角色状态无效
This commit is contained in:
郝先瑞 2022-06-20 21:41:41 +08:00 committed by GitHub
commit a756a80728
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,4 +21,10 @@ public class RoleForm {
@NotBlank(message = "角色编码不能为空")
private String code;
@ApiModelProperty("排序")
private Integer sort;
@ApiModelProperty("角色状态(1-正常0-停用)")
private Integer status;
}