using System; namespace CRM.Core.DTO.Ord { /// /// 订金列表 返回数据 /// 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; } /// /// 订金金额 /// public decimal? depositPrice { get; set; } } public class OrderPayUseListSumRspInfo { /// /// 汇总可用金额 /// public decimal? usePriceSum { get; set; } } }