This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package com.glxp.api.entity.auth;
import lombok.Data;
import lombok.NoArgsConstructor;
/**
* 角色
*/
@Data
@NoArgsConstructor
public class RoleEntity {
* 角色ID
private Long roleId;
* 角色名称
private String roleName;
* 角色权限
private String roleKey;
* 数据范围(1:所有数据权限;2:自定义数据权限;3:本部门数据权限;4:本部门及以下数据权限;5:仅本人数据权限)
private String dataScope;
}