TG.WXCRM.V4/Core.DTO/Ord/OrderPayListRspDto.cs

49 lines
1.5 KiB
C#

using System;
namespace CRM.Core.DTO.Ord
{
/// <summary>
/// 订金列表 返回数据
/// </summary>
public class OrderPayListRspDto
{
public int id { get; set; }
public string resid { get; set; }
public int paytype { get; set; }
public string paytypename { get; set; }
public DateTime? paydate { get; set; }
public decimal payprice { get; set; }
public string payname { get; set; }
public string remark { get; set; }
public int auditstatus { get; set; }
public int? auditor { get; set; }
public string auditorname { get; set; }
public DateTime? audittime { get; set; }
public DateTime ctime { get; set; }
public string payno { get; set; }
public int isuse { get; set; }
public string companycode { get; set; }
public int? orderid { get; set; }
public int? channel { get; set; }
public string tradeno { get; set; }
public int? isdelete { get; set; }
public int? creator { get; set; }
public string creatorname { get; set; }
public string rejectremark { get; set; }
public decimal? useprice { get; set; }
public decimal? lastprice { get; set; }
}
public class OrderPayListSumRspInfo
{
/// <summary>
/// 汇总可用金额
/// </summary>
public decimal? lastpriceSum { get; set; }
/// <summary>
/// 总到账金额
/// </summary>
public decimal? paypriceSum { get; set; }
}
}