xuhy
2024-09-23 66a4d910a33d1273427b513e008bd9cd4c5d4054
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
package com.ruoyi.system.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.util.List;
 
@Data
@ApiModel(value = "角色新增DTO")
public class SysRoleDTO implements Serializable {
 
    @ApiModelProperty(value = "角色id")
    private Long roleId;
 
    @ApiModelProperty(value = "角色名称")
    private String roleName;
 
    @ApiModelProperty(value = "类型")
    private Integer postType;
 
    @ApiModelProperty(value = "备注")
    private String remark;
 
    @ApiModelProperty(value = "权限id集合")
    private List<Long> menuIds;
 
}