Pu Zhibing
2025-02-27 b380c7e0d061b5502114ab1214c2a217f7f6ee92
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.panzhihua.sangeshenbian.warpper;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author zhibing.pu
 * @Date 2025/2/19 16:50
 */
@Data
@ApiModel
public class SystemRoleListVo {
    @ApiModelProperty("数据ID")
    private Integer id;
    @ApiModelProperty("角色名称")
    private String name;
}