using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace SA.Entity.zxdcrm_Models
{
///
///支付记录表
///
[SugarTable("mon_orderpay")]
public partial class MonOrderpay
{
public MonOrderpay(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")]
public int Id {get;set;}
///
/// Desc:月结年月
/// Default:
/// Nullable:False
///
[SugarColumn(ColumnName="month")]
public DateTime Month {get;set;}
///
/// Desc:订单号
/// Default:
/// Nullable:False
///
[SugarColumn(ColumnName="orderid")]
public int Orderid {get;set;}
///
/// Desc:下单金额
/// Default:
/// Nullable:False
///
[SugarColumn(ColumnName="needpay")]
public decimal Needpay {get;set;}
///
/// Desc:支付类型
/// Default:
/// Nullable:False
///
[SugarColumn(ColumnName="paytype")]
public int Paytype {get;set;}
///
/// Desc:支付类型名称
/// Default:
/// Nullable:False
///
[SugarColumn(ColumnName="paytypename")]
public string Paytypename {get;set;}
///
/// Desc:支付时间
/// Default:
/// Nullable:False
///
[SugarColumn(ColumnName="paydate")]
public DateTime Paydate {get;set;}
///
/// Desc:支付金额
/// Default:
/// Nullable:False
///
[SugarColumn(ColumnName="payprice")]
public decimal Payprice {get;set;}
///
/// Desc:付款人姓名
/// Default:
/// Nullable:False
///
[SugarColumn(ColumnName="payname")]
public string Payname {get;set;}
///
/// Desc:备注
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="remark")]
public string? Remark {get;set;}
///
/// Desc:是否审核
/// Default:0
/// Nullable:False
///
[SugarColumn(ColumnName="auditstatus")]
public int Auditstatus {get;set;}
///
/// Desc:审核人
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="auditor")]
public int? Auditor {get;set;}
///
/// Desc:审核人姓名
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="auditorname")]
public string? Auditorname {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="audittime")]
public DateTime? Audittime {get;set;}
///
/// Desc:添加时间
/// Default:
/// Nullable:False
///
[SugarColumn(ColumnName="ctime")]
public DateTime Ctime {get;set;}
///
/// Desc:支付流水
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="payno")]
public string? Payno {get;set;}
///
/// Desc:营业部编码
/// Default:
/// Nullable:True
///
[SugarColumn(ColumnName="companycode")]
public string? Companycode {get;set;}
}
}