using System;
namespace BBWY.Client.Models
{
public class AuditPurchaseOrder
{
public string PurchaseOrderId { get; set; }
///
/// 采购平台
///
public Platform Platform { get; set; }
public DateTime CreateTime { get; set; }
public DateTime? PayTime { get; set; }
///
/// 采购数量
///
public int Quantity { get; set; }
///
/// 货款
///
public decimal ProductAmount { get; set; }
///
/// 运费
///
public decimal Freight { get; set; }
///
/// 实付
///
public decimal PayAmount { get; set; }
///
/// 联系电话
///
public string Phone { get; set; }
///
/// 收货地址
///
public string Address { get; set; }
///
/// 收货人
///
public string ContactName { get; set; }
///
/// 归属店铺
///
public string BelongShop { get; set; }
public string BelongFileName { get; set; }
///
/// 关联账单Id
///
public string RelationPayBillNo { get; set; }
///
/// 关联的店铺订单
///
public string RelationShopOrderId { get; set; }
public string ErrorMessage { get; set; }
}
}