/*********************************************************************** * Project: baifenBinfa * ProjectName: 百分兵法管理系统 * Web: http://chuanyin.com * Author: * Email: 34161541@qq.com * CreateTime: 2024-03-01 22:14:58 * Description: 暂无 ***********************************************************************/ using SqlSugar; using System.ComponentModel.DataAnnotations; namespace CoreCms.Net.Model.Entities { /// /// 代理商品池 /// [SugarTable("CoreCmsAgentGoods",TableDescription = "代理商品池")] public partial class CoreCmsAgentGoods { /// /// 代理商品池 /// public CoreCmsAgentGoods() { } /// /// 序列 /// [Display(Name = "序列")] [SugarColumn(ColumnDescription = "序列", IsPrimaryKey = true, IsIdentity = true)] [Required(ErrorMessage = "请输入{0}")] public System.Int32 id { get; set; } /// /// 商品序列 /// [Display(Name = "商品序列")] [SugarColumn(ColumnDescription = "商品序列")] [Required(ErrorMessage = "请输入{0}")] public System.Int32 goodId { get; set; } /// /// 商品编辑时间 /// [Display(Name = "商品编辑时间")] [SugarColumn(ColumnDescription = "商品编辑时间", IsNullable = true)] public System.DateTime? goodRefreshTime { get; set; } /// /// 排序 /// [Display(Name = "排序")] [SugarColumn(ColumnDescription = "排序")] [Required(ErrorMessage = "请输入{0}")] public System.Int32 sortId { get; set; } /// /// 是否启用 /// [Display(Name = "是否启用")] [SugarColumn(ColumnDescription = "是否启用")] [Required(ErrorMessage = "请输入{0}")] public System.Boolean isEnable { get; set; } /// /// 创建时间 /// [Display(Name = "创建时间")] [SugarColumn(ColumnDescription = "创建时间")] [Required(ErrorMessage = "请输入{0}")] public System.DateTime createTime { get; set; } /// /// 最后更新时间 /// [Display(Name = "最后更新时间")] [SugarColumn(ColumnDescription = "最后更新时间", IsNullable = true)] public System.DateTime? updateTime { get; set; } } }