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