145 lines
4.5 KiB
C#
145 lines
4.5 KiB
C#
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using SqlSugar;
|
||
namespace SA.Entity.zxdcrm_audit_Models
|
||
{
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarTable("wx_szzyorderdeposit")]
|
||
public class wx_szzyorderdeposit
|
||
{
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="id" ,IsPrimaryKey = true )]
|
||
public int id { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="resid" )]
|
||
public string resid { get; set; } ="";
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="paytype" )]
|
||
public int paytype { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="paytypename" )]
|
||
public string paytypename { get; set; } ="";
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="paydate" )]
|
||
public DateTime? paydate { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="payprice" )]
|
||
public decimal payprice { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="payname" )]
|
||
public string payname { get; set; } ="";
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="remark" )]
|
||
public string remark { get; set; } ="";
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="auditstatus" )]
|
||
public int? auditstatus { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="auditor" )]
|
||
public int? auditor { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="auditorname" )]
|
||
public string auditorname { get; set; } ="";
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="audittime" )]
|
||
public DateTime? audittime { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="ctime" )]
|
||
public DateTime? ctime { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="payno" )]
|
||
public string payno { get; set; } ="";
|
||
/// <summary>
|
||
/// -1:开通;0:未使用;1:已使用;(等于1状态的时候订金才能退款,开通状态下订单退款)
|
||
///</summary>
|
||
[SugarColumn(ColumnName="isuse" )]
|
||
public int? isuse { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="companycode" )]
|
||
public string companycode { get; set; } ="";
|
||
/// <summary>
|
||
/// 订金关联的订单号(使用订金的时候确认订单号)
|
||
///</summary>
|
||
[SugarColumn(ColumnName="orderid" )]
|
||
public int? orderid { get; set; }
|
||
/// <summary>
|
||
/// 渠道
|
||
///</summary>
|
||
[SugarColumn(ColumnName="channel" )]
|
||
public int? channel { get; set; }
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="tradeno" )]
|
||
public string tradeno { get; set; } ="";
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="isdelete" )]
|
||
public int? isdelete { get; set; }
|
||
/// <summary>
|
||
/// 提交人
|
||
///</summary>
|
||
[SugarColumn(ColumnName="creator" )]
|
||
public int? creator { get; set; }
|
||
/// <summary>
|
||
/// 提交人姓名
|
||
///</summary>
|
||
[SugarColumn(ColumnName="creatorname" )]
|
||
public string creatorname { get; set; } ="";
|
||
/// <summary>
|
||
/// 驳回说明
|
||
///</summary>
|
||
[SugarColumn(ColumnName="rejectremark" )]
|
||
public string rejectremark { get; set; } ="";
|
||
/// <summary>
|
||
/// 自动对账结果
|
||
///</summary>
|
||
[SugarColumn(ColumnName="checkreslut" )]
|
||
public string checkreslut { get; set; } ="";
|
||
/// <summary>
|
||
///
|
||
///</summary>
|
||
[SugarColumn(ColumnName="checkpaytime" )]
|
||
public DateTime? checkpaytime { get; set; }
|
||
/// <summary>
|
||
/// 部门编码
|
||
///</summary>
|
||
[SugarColumn(ColumnName="deptcode" )]
|
||
public string deptcode { get; set; } ="";
|
||
}
|
||
}
|