using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///商家收货方式 /// [SugarTable("EC_AcceptWayBySeller")] public partial class EC_AcceptWayBySeller { public EC_AcceptWayBySeller(){ } /// /// Desc:收货方式编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:商家编号 /// Default: /// Nullable:False /// public Guid SellerId {get;set;} /// /// Desc:城市 /// Default: /// Nullable:False /// public string City {get;set;} /// /// Desc:收货人 /// Default: /// Nullable:False /// public string Accepter {get;set;} /// /// Desc:联系电话 /// Default: /// Nullable:True /// public string AccepterPhone {get;set;} /// /// Desc:指定货运公司 /// Default: /// Nullable:True /// public string AppointCourierCompany {get;set;} /// /// Desc:收货点地址 /// Default: /// Nullable:True /// public string AccepterAddress {get;set;} /// /// Desc:收货电话 /// Default: /// Nullable:True /// public string AccepterPhoneNum {get;set;} /// /// Desc:收货联系人 /// Default: /// Nullable:True /// public string AcceptContacts {get;set;} /// /// Desc:取货点地址 /// Default: /// Nullable:True /// public string FetchAddress {get;set;} /// /// Desc:取货电话 /// Default: /// Nullable:True /// public string FetchPhoneNum {get;set;} /// /// Desc:取货联系人 /// Default: /// Nullable:True /// public string FetchContacts {get;set;} /// /// Desc:票据要求 /// Default: /// Nullable:True /// public string InvoiceDemand {get;set;} /// /// Desc:最后修改时间 /// Default: /// Nullable:False /// public DateTime LastUpdateTime {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} /// /// Desc:操作人 /// Default: /// Nullable:True /// public string Operator {get;set;} /// /// Desc:收货类型编号 /// Default: /// Nullable:True /// public int? AcceptTypeId {get;set;} } }