xyc
2026-08-14 1f4a6cc6045f47861c3e8d49a782afc3e11e3843
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.trafficaudit.system.entity;
 
import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
 
@Data
@TableName("sys_role")
public class Role {
    @TableId(type = IdType.AUTO)
    private Long id;
    private String roleName;
    private String roleCode;
    private String roleType;
    private Integer roleLevel;
    private Integer isMutex;
}