luofl
2025-02-23 0facef68a06fb36cc1ac12730b076cead36348f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.panzhihua.sangeshenbian.warpper;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
/**
 * @author zhibing.pu
 * @Date 2025/2/19 17:36
 */
@Data
@ApiModel
public class SystemRoleInfo {
    @ApiModelProperty("角色ID")
    private Integer id;
    @ApiModelProperty("角色名称")
    private String name;
    @ApiModelProperty("菜单id集合")
    private List<Integer> systemMenuIds;
}