51 lines
1.6 KiB
C#
51 lines
1.6 KiB
C#
using System;
|
|
|
|
namespace CRM.Core.DTO.Ord
|
|
{
|
|
/// <summary>
|
|
/// 订金列表 返回数据
|
|
/// </summary>
|
|
public class OrderPayUseListRspDto
|
|
{
|
|
public int id { get; set; }
|
|
public int orderid { get; set; }
|
|
public decimal needpay { 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 string companycode { get; set; }
|
|
public int? channel { get; set; }
|
|
public int isdelete { get; set; }
|
|
public string tradeno { get; set; }
|
|
public int? creator { get; set; }
|
|
public string creatorname { get; set; }
|
|
public string rejectremark { get; set; }
|
|
public int? depositid { get; set; }
|
|
public string checkreslut { get; set; }
|
|
public DateTime? checkpaytime { get; set; }
|
|
/// <summary>
|
|
/// 订金金额
|
|
/// </summary>
|
|
public decimal? depositPrice { get; set; }
|
|
|
|
}
|
|
public class OrderPayUseListSumRspInfo
|
|
{
|
|
/// <summary>
|
|
/// 汇总可用金额
|
|
/// </summary>
|
|
public decimal? usePriceSum { get; set; }
|
|
|
|
|
|
}
|
|
}
|