using SqlSugar; using System.ComponentModel; using System.ComponentModel.DataAnnotations; namespace Myshipping.Core.Entity; /// /// 角色表 /// [SugarTable("sys_role")] [Description("角色表")] public class SysRole : DBEntityTenant { /// /// 名称 /// [Required, MaxLength(20)] public string Name { get; set; } /// /// 编码 /// [Required, MaxLength(50)] public string Code { get; set; } /// /// 排序 /// public int Sort { get; set; } /// /// 数据范围类型(字典 1全部数据 2本部门及以下数据 3本部门数据 4仅本人数据 5自定义数据) /// public DataScopeType DataScopeType { get; set; } /// /// 备注 /// [MaxLength(100)] public string Remark { get; set; } /// /// 状态(字典 0正常 1停用 2删除) /// public CommonStatus Status { get; set; } = CommonStatus.ENABLE; /// /// 管理员类型-超级管理员_1、非管理员_2 /// public RoleType? RoleType { get; set; } }