1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- namespace Model
- {
-
-
-
- [Tenant("0")]
- public class SysPermission : SysBase
- {
-
-
-
- [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
- public int Id { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "排序", DefaultValue = "0")]
- public int Sort { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "状态", DefaultValue = "0")]
- public int Status { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "版本号", DefaultValue = "0")]
- public int Version { get; set; }
-
-
-
- [SugarColumn(ColumnDescription = "发布时间")]
- public DateTime? CreateDate { get; set; }
-
-
-
- [SugarColumn(IsOnlyIgnoreInsert = true, ColumnDescription = "更新时间")]
- public DateTime? UpdateDate { get; set; }
- }
- }
|