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

30 lines
843 B
C#

using System;
namespace CRM.Core.DTO.Ord
{
/// <summary>
/// 订金列表 请求参数
/// </summary>
public class OrderPayListReqDto
{
public string channel { get; set; }
public int? id { get; set; }
public string resid { get; set; }
/// <summary>
/// 流水号
/// </summary>
public string payno { get; set; }
public DateTime? audittimeStime { get; set; }
public DateTime? audittimeEtime { get; set; }
public int? auditstatus { get; set; }
public DateTime? paydateStime { get; set; }
public DateTime? paydateEtime { get; set; }
public int? paytype { get; set; }
public decimal? businessId { get; set; }
public string EidName { get; set; }
public LaypageDto laypage { get; set; }
}
}