| | |
| | | /// 用户表 |
| | | /// </summary> |
| | | [SugarTable("CoreCmsUser",TableDescription = "用户表")] |
| | | [SqlCodeFirst] |
| | | //[SqlCodeFirst] |
| | | public partial class CoreCmsUser |
| | | { |
| | | /// <summary> |
| | |
| | | [SugarColumn(ColumnDescription = "删除标志 有数据就是删除")] |
| | | [Required(ErrorMessage = "请输入{0}")] |
| | | public System.Boolean isDelete { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 是否是计划订单用户 ALTER TABLE [CoreCmsUser] ADD [isplanorder] [nvarchar](255) NULL; |
| | | /// </summary> |
| | | [Display(Name = "计划订单id")] |
| | | |
| | | |
| | | [StringLength(maximumLength: 255, ErrorMessage = "{0}不能超过{1}字")] |
| | | [SugarColumn(IsNullable = true)] |
| | | |
| | | public System.String isplanorder { get; set; } |
| | | } |
| | | } |