using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///办公系统意向客户 /// [SugarTable("OA_IntentionCustomer")] public partial class OA_IntentionCustomer { public OA_IntentionCustomer(){ } /// /// Desc:数据编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:关联厂商 /// Default: /// Nullable:False /// public Guid FirmId {get;set;} /// /// Desc:展示编号 /// Default: /// Nullable:False /// public int CustomerId {get;set;} /// /// Desc:公司全称 /// Default: /// Nullable:False /// public string CompanyName {get;set;} /// /// Desc:客户行业编号 /// Default: /// Nullable:False /// public int CustomerIndustriesId {get;set;} /// /// Desc:客户类型编号 /// Default: /// Nullable:False /// public int CustomerTypeId {get;set;} /// /// Desc:信息来源编号 /// Default: /// Nullable:False /// public int SourcesInfoId {get;set;} /// /// Desc:重要程度编号 /// Default: /// Nullable:False /// public int DegreeImportanId {get;set;} /// /// Desc:成交意向编号 /// Default: /// Nullable:False /// public int TurnoverIntentionId {get;set;} /// /// Desc:省 /// Default: /// Nullable:True /// public string Province {get;set;} /// /// Desc:市 /// Default: /// Nullable:True /// public string City {get;set;} /// /// Desc:区 /// Default: /// Nullable:True /// public string County {get;set;} /// /// Desc:详细地址 /// Default: /// Nullable:True /// public string DetailedAddress {get;set;} /// /// Desc:邮编 /// Default: /// Nullable:True /// public string Postcode {get;set;} /// /// Desc:电话 /// Default: /// Nullable:True /// public string PhoneNum {get;set;} /// /// Desc:短信 /// Default: /// Nullable:True /// public string MobileNum {get;set;} /// /// Desc:email /// Default: /// Nullable:True /// public string Email {get;set;} /// /// Desc:QQ /// Default: /// Nullable:True /// public string QQ {get;set;} /// /// Desc:公司负责人 /// Default: /// Nullable:True /// public string CompanyOfficers {get;set;} /// /// Desc:手机 /// Default: /// Nullable:True /// public string OfficersMobile {get;set;} /// /// Desc:业务经办人 /// Default: /// Nullable:True /// public string BusinessManagers {get;set;} /// /// Desc:职务 /// Default: /// Nullable:True /// public string CuPost {get;set;} /// /// Desc:客户经理编号 /// Default: /// Nullable:True /// public int? AccountManagerId {get;set;} /// /// Desc:业务经理编号 /// Default: /// Nullable:True /// public int? BusinessManagerId {get;set;} /// /// Desc:建立时间 /// Default: /// Nullable:False /// public DateTime CreateTime {get;set;} /// /// Desc:客户状态编号 /// Default: /// Nullable:False /// public int CustomerStatusId {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 string BusinessMobile {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? Fax {get;set;} } }