using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///会员订单 /// [SugarTable("EC_PaymentRecord")] public partial class EC_PaymentRecord { public EC_PaymentRecord(){ } /// /// Desc:编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:订单类别 /// Default: /// Nullable:True /// public string PayType {get;set;} /// /// Desc:制单人 /// Default: /// Nullable:True /// public string Operator {get;set;} /// /// Desc:会员编号 /// Default: /// Nullable:True /// public Guid? MemberId {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string MemberName {get;set;} /// /// Desc:业务经理编号 /// Default: /// Nullable:True /// public int? BusinessManagerId {get;set;} /// /// Desc:客户经理编号 /// Default: /// Nullable:True /// public int? AccountManagerId {get;set;} /// /// Desc:联系人 /// Default: /// Nullable:True /// public string Contact {get;set;} /// /// Desc:电话 /// Default: /// Nullable:True /// public string CompanyPhone {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 decimal? PayMoney {get;set;} /// /// Desc:总金额 /// Default: /// Nullable:True /// public decimal? PayAllMoney {get;set;} /// /// Desc:购买时间 /// Default: /// Nullable:True /// public DateTime? PayStartTime {get;set;} /// /// Desc:到期时间 /// Default: /// Nullable:True /// public DateTime? PayEndTime {get;set;} /// /// Desc:缴费角色 /// Default: /// Nullable:True /// public string PayRole {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:True /// public DateTime? LastUpdateTime {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} /// /// Desc:软件权限 /// Default: /// Nullable:True /// public string SoftwarePermissions {get;set;} /// /// Desc:广告板块 /// Default: /// Nullable:True /// public string AdForum {get;set;} /// /// Desc:广告位置 /// Default: /// Nullable:True /// public string AdLocation {get;set;} /// /// Desc:广告尺寸 /// Default: /// Nullable:True /// public string AdSize {get;set;} /// /// Desc:广告图片 /// Default: /// Nullable:True /// public string AdImg {get;set;} /// /// Desc:购买期数 /// Default: /// Nullable:True /// public string AdInstallments {get;set;} } }