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