using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///报价需求 /// [SugarTable("EC_QuoteDemand")] public partial class EC_QuoteDemand { public EC_QuoteDemand(){ } /// /// Desc:需求编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:会员编号 /// Default: /// Nullable:False /// public Guid MemberId {get;set;} /// /// Desc:印刷类型 /// Default: /// Nullable:False /// public int PrintTypeId {get;set;} /// /// Desc:需求名称 /// Default: /// Nullable:True /// public string DemandName {get;set;} /// /// Desc:要求 /// Default: /// Nullable:True /// public string DemandDemand {get;set;} /// /// Desc:截止时间 /// Default: /// Nullable:True /// public DateTime? EndTime {get;set;} /// /// Desc:信息提示方式 /// Default: /// Nullable:False /// 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:False /// public DateTime LastUpdateTime {get;set;} /// /// Desc:操作人 /// Default: /// Nullable:False /// public string Operator {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? QuoteCount {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string ContactPhone {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string QQ {get;set;} } }