nidapeng
2024-04-23 5072f33b5c54142f00991d0dafc9ea75af696b81
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.doumee.dao.system.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
 
/**
 * @author Eva.Caesar Liu
 * @date 2023/03/21 14:49
 */
@Data
@ApiModel("查询系统角色参数")
public class QuerySystemRoleDTO implements Serializable {
 
    @ApiModelProperty(value = "角色编码")
    private String code;
 
    @ApiModelProperty(value = "角色名称")
    private String name;
}