using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("wx_order_payclear")] public partial class WxOrderPayclear { public WxOrderPayclear(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")] public int Id {get;set;} /// /// Desc: /// Default:0 /// Nullable:True /// [SugarColumn(ColumnName="payid")] public int? Payid {get;set;} /// /// Desc:订单号 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="orderid")] public int? Orderid {get;set;} /// /// Desc:支付金额 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="payprice")] public decimal? Payprice {get;set;} /// /// Desc:支付时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="paydate")] public DateTime? Paydate {get;set;} /// /// Desc:支付时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="usedate")] public DateTime? Usedate {get;set;} /// /// Desc:usestatus=0 未使用 usestatus=1 已使用 /// Default:0 /// Nullable:False /// [SugarColumn(ColumnName="usestatus")] public int Usestatus {get;set;} /// /// Desc:usertype=0 只付款 usertype=1 正向使用 usertype=-1 退款 /// Default:0 /// Nullable:False /// [SugarColumn(ColumnName="usetype")] public int Usetype {get;set;} /// /// Desc:计算了苹果支付、魅族支付、华为支付手续费后的金额 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="useprice")] public decimal? Useprice {get;set;} /// /// Desc:原始金额 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="useprice2")] public decimal? Useprice2 {get;set;} /// /// Desc:渠道 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="channel")] public int? Channel {get;set;} } }