办学质量监测教学评价系统
ageerle
2025-03-04 ddfd2cf3eaf0fc4409877dff7a3d0d3f21885103
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
30
31
32
package org.ruoyi.system.response.rolelist;
 
import lombok.Data;
 
/**
 * 描述:
 *
 * @author ageerle@163.com
 * date 2024/4/27
 */
@Data
public class RoleListVO {
 
 
    private String name;
 
    private String description;
 
    private String voicesId;
 
    private String avatar;
 
    private String previewAudio;
 
    public RoleListVO(String name, String description, String voicesId, String previewAudio,String avatar) {
        this.name = name;
        this.description = description;
        this.voicesId = voicesId;
        this.previewAudio = previewAudio;
        this.avatar = avatar;
    }
}