using SqlSugar; namespace Gs.Sys.Models; /// /// [SugarTable("SYS_ROLE")] public class SysRole { /// /// 名称 /// [SugarColumn(ColumnName = "GUID", IsPrimaryKey = true)] public Guid? Guid { get; set; } /// /// 角色名 /// [SugarColumn(ColumnName = "ROLE_NAME")] public string RoleName { get; set; } /// /// 角色备注 /// [SugarColumn(ColumnName = "ROLE_REMARK")] public string RoleRemark { get; set; } /// /// 建立者 /// [SugarColumn(ColumnName = "CREATE_BY", IsOnlyIgnoreUpdate = true)] public string CreateBy { get; set; } /// /// 建立时间 /// [SugarColumn(ColumnName = "CREATE_TIME", IsOnlyIgnoreUpdate = true)] public DateTime? CreateTime { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "LASTUPDATE_TIME")] public DateTime? LastupdateTime { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "LASTUPDATE_BY")] public string LastupdateBy { get; set; } /// /// 状态 /// [SugarColumn(ColumnName = "IS_STATUS")] public bool? IsStatus { get; set; } }