22 lines
447 B
C#
22 lines
447 B
C#
namespace CRM.Core.DTO.Ord
|
|
{
|
|
public class OutOrderNoticeDto
|
|
{
|
|
public string orderNo { get; set; }
|
|
|
|
public string outOderNo { get; set; }
|
|
|
|
public string payWay { get; set; }
|
|
|
|
public string merchantOrderNo { get; set; }
|
|
|
|
public string totalPrice { get; set; }
|
|
|
|
public string payName { get; set; }
|
|
|
|
public long payTime { get; set; }
|
|
|
|
public string sign { get; set; }
|
|
}
|
|
}
|