lyh
2025-06-27 f472efc9ad1f9bda645dd39b40607c5eabb73b47
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
package org.jeecg.modules.flowable.apithird.entity;
 
import lombok.Data;
 
/**
 * 角色
 * @author pmc
 */
@Data
public class SysRole {
    private static final long serialVersionUID = 1L;
 
    /**
     * id
     */
    private String id;
 
    /**
     * 角色名称
     */
    private String roleName;
 
    /**
     * 角色编码
     */
    private String roleCode;
}