132 lines
3.8 KiB
C#
132 lines
3.8 KiB
C#
using System;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using SqlSugar;
|
||
|
||
namespace SA.Entity.zxdcrm_Models
|
||
{
|
||
///<summary>
|
||
///
|
||
///</summary>
|
||
[SugarTable("wx_szzyorderpayuselog")]
|
||
public partial class WxSzzyorderpayuselog
|
||
{
|
||
public WxSzzyorderpayuselog(){
|
||
|
||
|
||
}
|
||
/// <summary>
|
||
/// Desc:
|
||
/// Default:
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")]
|
||
public int Id {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:资源ID
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="resid")]
|
||
public string? Resid {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:订单ID
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="orderid")]
|
||
public int? Orderid {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:到账ID
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="depositid")]
|
||
public int? Depositid {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:支付类型
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="paytype")]
|
||
public int? Paytype {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:支付类型名称
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="paytypename")]
|
||
public string? Paytypename {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:支付流水号
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="payno")]
|
||
public string? Payno {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:使用金额
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="useprice")]
|
||
public decimal? Useprice {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:使用时间
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="usetime")]
|
||
public DateTime? Usetime {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:渠道
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="channel")]
|
||
public int? Channel {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:创建时间
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="ctime")]
|
||
public DateTime? Ctime {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:1:进账+ 2:使用- 3:取消使用+ 4:取消到账- 5:订单取消使用+ 6:退款- 7:余额退款- 8:订单冻结金额- 9:退款解冻+ 10:退单取消使用+
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="usetype")]
|
||
public int? Usetype {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:在执行完当前节点可用金额
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="lastprice")]
|
||
public decimal? Lastprice {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:描述
|
||
/// Default:
|
||
/// Nullable:True
|
||
/// </summary>
|
||
[SugarColumn(ColumnName="memo")]
|
||
public string? Memo {get;set;}
|
||
|
||
}
|
||
}
|