25 lines
514 B
C#
25 lines
514 B
C#
namespace CRM.Core.DTO.Ord
|
|
{
|
|
public class SyncOrderPayInfoDto
|
|
{
|
|
public string UserName { get; set; }
|
|
|
|
public string PayMark { get; set; }
|
|
|
|
/// <summary>
|
|
/// 支付流水号
|
|
/// </summary>
|
|
public string PayNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 懂牛软件线上订单号
|
|
/// </summary>
|
|
public string ApplyOrderId { get; set; }
|
|
|
|
public decimal PayPrice { get; set; }
|
|
|
|
public int PayType { get; set; }
|
|
|
|
}
|
|
}
|