using System; using System.Linq; using System.Text; using SqlSugar; namespace WMS.Core { /// /// /// [SugarTable("BASE_CUSTOMER")] public partial class BASE_CUSTOMER { public BASE_CUSTOMER(){ } /// /// Desc:编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string F_NO {get;set;} /// /// Desc:是否停用 /// Default: /// Nullable:False /// public int F_ISSTOP {get;set;} /// /// Desc:是否删除 /// Default: /// Nullable:False /// public int F_ISDELETE {get;set;} /// /// Desc:名称 /// Default: /// Nullable:False /// public string F_NAME {get;set;} /// /// Desc:国家 /// Default: /// Nullable:True /// public string F_COUNTRY {get;set;} /// /// Desc:城市 /// Default: /// Nullable:True /// public string F_CITY {get;set;} /// /// Desc:邮编 /// Default: /// Nullable:True /// public string F_POSTALCODE {get;set;} /// /// Desc:地址 /// Default: /// Nullable:True /// public string F_ADDRESS {get;set;} /// /// Desc:手机 /// Default: /// Nullable:True /// public string F_MOBILE {get;set;} /// /// Desc:固定电话 /// Default: /// Nullable:True /// public string F_TEL {get;set;} /// /// Desc:传真 /// Default: /// Nullable:True /// public string F_FAX {get;set;} /// /// Desc:电子邮箱 /// Default: /// Nullable:True /// public string F_EMAIL {get;set;} /// /// Desc:微信 /// Default: /// Nullable:True /// public string F_WECHAT {get;set;} /// /// Desc:联系人 /// Default: /// Nullable:True /// public string F_CONTACT {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string F_MEMO {get;set;} /// /// Desc:创建用户编号 /// Default: /// Nullable:False /// public string F_ADDUSERNO {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:False /// public DateTime F_ADDTIME {get;set;} /// /// Desc:编辑用户编号 /// Default: /// Nullable:False /// public string F_EDITUSERNO {get;set;} /// /// Desc:编辑时间 /// Default: /// Nullable:False /// public DateTime F_EDITTIME {get;set;} } }