角色注解

This commit is contained in:
attiya 2025-09-03 11:08:30 +08:00
parent 2bd7afe3b1
commit 0b775f06b4

View File

@ -31,11 +31,25 @@ public class EbikeRole implements Serializable {
@Id @Id
private Long roleId; private Long roleId;
/**
* 角色名称
*/
private String roleName; private String roleName;
/**
* 角色表示
*/
private String roleCode;
/**
* 所属运营商
*/
@Column(tenantId = true) @Column(tenantId = true)
private Long operatorId; private Long operatorId;
/**
* 描述
*/
private String description; private String description;
private Long createBy; private Long createBy;