98 lines
2.9 KiB
C#
98 lines
2.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CRM.Core.DTO.Ord
|
|
{
|
|
public class PayDto
|
|
{
|
|
public long 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 string payno { get; set; }
|
|
public int isuse { get; set; }
|
|
public string companycode { get; set; }
|
|
public string tradeno { get; set; }
|
|
public int? creator { get; set; }
|
|
public string creatorname { get; set; }
|
|
public List<OrderuseDto> orderuselist { get; set; }
|
|
public decimal? depprice { get; set; }
|
|
}
|
|
/// <summary>
|
|
/// 已经确认支付的金额,
|
|
/// </summary>
|
|
public class PayUseDto
|
|
{
|
|
public int channel { get; set; }
|
|
public string resid { get; set; }
|
|
public decimal? depprice { get; set; }
|
|
public List<OrderuseDto> orderuselist { get; set; }
|
|
}
|
|
|
|
public class OrderuseDto
|
|
{
|
|
public int orderid { get; set; }
|
|
public decimal needpay { get; set; }
|
|
public decimal arrivalpay { get; set; }
|
|
}
|
|
|
|
public class PayDto2
|
|
{
|
|
public string resid { get; set; }
|
|
public int? channel { get; set; }
|
|
//public decimal? depprice { get; set; }
|
|
public string deptcode { get; set; }
|
|
public List<PayInfoDto> paylist { get; set; }
|
|
public List<OrderuseDto> orderuselist { get; set; }
|
|
|
|
}
|
|
|
|
public class OutPayDto
|
|
{
|
|
public string szzyorderid { get; set; }
|
|
public int paytype { get; set; }
|
|
public DateTime paydate { get; set; }
|
|
public string payname { get; set; }
|
|
public string payno { get; set; }
|
|
public decimal payprice { get; set; }
|
|
public string remark { get; set; }
|
|
}
|
|
|
|
public class PayInfoDto
|
|
{
|
|
//public long 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; }
|
|
/// <summary>
|
|
/// 直接去除前后空格
|
|
/// </summary>
|
|
public string payno
|
|
{
|
|
get; set;
|
|
}
|
|
public int isuse { get; set; }
|
|
public string companycode { get; set; }
|
|
public string tradeno { get; set; }
|
|
public int? creator { get; set; }
|
|
public string creatorname { get; set; }
|
|
public DateTime? checkpaytime { get; set; }
|
|
}
|
|
|
|
public class DepositInfoDto
|
|
{
|
|
public int id { get; set; }
|
|
public string payno { get; set; }
|
|
public string companycode { get; set; }
|
|
}
|
|
|
|
}
|