using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace SA.Entity.zxdcrm_audit_Models { /// /// 支付记录表 /// [SugarTable("wx_szzyorderpay")] public class wx_szzyorderpay { /// /// /// [SugarColumn(ColumnName="id" ,IsPrimaryKey = true ,IsIdentity = true )] public int id { get; set; } /// /// 订单号 /// [SugarColumn(ColumnName="orderid" )] public int orderid { get; set; } /// /// 下单金额 /// [SugarColumn(ColumnName="needpay" )] public decimal needpay { 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; } =""; /// /// 是否审核 /// 默认值: 0 /// [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; } =""; /// /// 营业部编码 /// [SugarColumn(ColumnName="companycode" )] public string companycode { get; set; } =""; /// /// 渠道 /// [SugarColumn(ColumnName="channel" )] public int? channel { get; set; } /// /// 是否删除 /// 默认值: 0 /// [SugarColumn(ColumnName="isdelete" )] public int? isdelete { get; set; } /// /// /// [SugarColumn(ColumnName="tradeno" )] public string tradeno { get; set; } =""; /// /// 提交人 /// [SugarColumn(ColumnName="creator" )] public int? creator { get; set; } /// /// 提交人姓名 /// [SugarColumn(ColumnName="creatorname" )] public string creatorname { get; set; } =""; /// /// /// 默认值: CURRENT_TIMESTAMP(4) /// [SugarColumn(ColumnName="last_modify_time" )] public DateTime? last_modify_time { 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; } /// /// 订金表ID /// [SugarColumn(ColumnName="depositid" )] public int? depositid { get; set; } /// /// 部门编码 /// [SugarColumn(ColumnName="deptcode" )] public string deptcode { get; set; } =""; } }