using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///陌生客户资料 /// [SugarTable("Inquiry_StrangeCustomerInfo")] public partial class Inquiry_StrangeCustomerInfo { public Inquiry_StrangeCustomerInfo(){ } /// /// Desc:编号 /// Default: /// Nullable:False /// public Guid KeyId {get;set;} /// /// Desc:客户名称 /// Default: /// Nullable:False /// public string CustomerName {get;set;} /// /// Desc:联系人 /// Default: /// Nullable:True /// public string ContractPeraon {get;set;} /// /// Desc:联系电话 /// Default: /// Nullable:True /// public string ContractCall {get;set;} /// /// Desc:联系手机 /// Default: /// Nullable:True /// public string ContractPhone {get;set;} /// /// Desc:QQ /// Default: /// Nullable:True /// public string QQ {get;set;} /// /// Desc:地址 /// Default: /// Nullable:True /// public string Address {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} /// /// Desc:询价记录编号 /// Default: /// Nullable:False /// public int RecordId {get;set;} /// /// Desc:最后修改时间 /// Default: /// Nullable:True /// public DateTime? LastUpdateTime {get;set;} } }