using System; namespace BBWY.Server.Model.Dto { public class AuditPurchaseOrderResponse { public long OrderDropShippingId { get; set; } public string PurchaseOrderId { get; set; } public string MerchantOrderId { get; set; } public long ShopId { get; set; } public decimal PurchaseAmount { get; set; } public string OrderId { get; set; } public DateTime? PurchaseTime { get; set; } /// /// 采购平台 /// public Enums.Platform? PurchasePlatform { get; set; } public DateTime? OrderStartTime { get; set; } } }