xiaoyong931011
2022-06-06 8436adbda66025f53ff901a75af41b4528a005b2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.xcong.farmer.cms.modules.system.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "AdminUpdateRoleDto", description = "参数接收类")
public class AdminUpdateRoleDto {
 
    @ApiModelProperty(value = "角色ID")
    private Long id;
 
    @ApiModelProperty(value = "角色名称")
    private String roleName;
 
    @ApiModelProperty(value = "拓展备注")
    private String remark;
 
    @ApiModelProperty(value = "菜单按钮ID")
    private String menuIds;
 
}