using System;
using System.Collections.Generic;
using System.Linq;
using SqlSugar;
namespace SA.Entity.zxdcrm_audit_Models
{
///
///
///
[SugarTable("wx_order_payclear")]
public class wx_order_payclear
{
///
///
///
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )]
public int id { get; set; }
///
///
/// 默认值: 0
///
[SugarColumn(ColumnName="payid" )]
public int? payid { get; set; }
///
/// 订单号
///
[SugarColumn(ColumnName="orderid" )]
public int? orderid { get; set; }
///
/// 支付金额
///
[SugarColumn(ColumnName="payprice" )]
public decimal? payprice { get; set; }
///
/// 支付时间
///
[SugarColumn(ColumnName="paydate" )]
public DateTime? paydate { get; set; }
///
/// 支付时间
///
[SugarColumn(ColumnName="usedate" )]
public DateTime? usedate { get; set; }
///
/// usestatus=0 未使用 usestatus=1 已使用
/// 默认值: 0
///
[SugarColumn(ColumnName="usestatus" )]
public int usestatus { get; set; }
///
/// usertype=0 只付款 usertype=1 正向使用 usertype=-1 退款
/// 默认值: 0
///
[SugarColumn(ColumnName="usetype" )]
public int usetype { get; set; }
///
/// 计算了苹果支付、魅族支付、华为支付手续费后的金额
///
[SugarColumn(ColumnName="useprice" )]
public decimal? useprice { get; set; }
///
/// 原始金额
///
[SugarColumn(ColumnName="useprice2" )]
public decimal? useprice2 { get; set; }
///
/// 渠道
///
[SugarColumn(ColumnName="channel" )]
public int? channel { get; set; }
}
}