角色注解

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
private Long roleId;
/**
* 角色名称
*/
private String roleName;
/**
* 角色表示
*/
private String roleCode;
/**
* 所属运营商
*/
@Column(tenantId = true)
private Long operatorId;
/**
* 描述
*/
private String description;
private Long createBy;