using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///用户需求信息 /// [SugarTable("EC_DemandDescribe")] public partial class EC_DemandDescribe { public EC_DemandDescribe(){ } /// /// Desc:需求编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:会员编号 /// Default: /// Nullable:True /// public Guid? MemberId {get;set;} /// /// Desc:印刷类型 /// Default: /// Nullable:True /// public int? PrintTypeId {get;set;} /// /// Desc:需求名称 /// Default: /// Nullable:True /// public string DemandName {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? PrintCount {get;set;} /// /// Desc:要求 /// Default: /// Nullable:True /// public string DemandDemand {get;set;} /// /// Desc:截止时间 /// Default: /// Nullable:True /// public DateTime? EndTime {get;set;} /// /// Desc:信息提示方式 /// Default: /// Nullable:True /// public int? CallTypeId {get;set;} /// /// Desc:状态 /// Default: /// Nullable:True /// public int? State {get;set;} /// /// Desc:发布时间 /// Default: /// Nullable:True /// public DateTime? CreateTime {get;set;} /// /// Desc:最后修改时间 /// Default: /// Nullable:True /// public DateTime? LastUpdateTime {get;set;} /// /// Desc:操作人 /// Default: /// Nullable:True /// public string Operator {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} } }