18 lines
359 B
C#
18 lines
359 B
C#
namespace CRM.Core.DTO.Ord
|
|
{
|
|
public class OutOrderDto
|
|
{
|
|
public string orderNo { get; set; }
|
|
public string thridOrderNo { get; set; }
|
|
|
|
public string payWay { get; set; }
|
|
|
|
public string merchantOrderNo { get; set; }
|
|
|
|
public decimal totalPrice { get; set; }
|
|
|
|
public string status { get; set; }
|
|
}
|
|
|
|
}
|