using System;
using System.Collections.Generic;
using System.Text;
namespace BBWY.Client.Models
{
public class AuditShopOrder
{
public string OrderId { get; set; }
public Platform Platform { get; set; }
///
/// 产品名称
///
public string ProductName { get; set; }
///
/// 销售数量
///
public int Quantity { get; set; }
///
/// 实付
///
public decimal PayAmount { get; set; }
///
/// 下单时间
///
public DateTime CreateTime { get; set; }
///
/// 联系电话
///
public string Phone { get; set; }
///
/// 收货地址
///
public string Address { get; set; }
///
/// 收货人
///
public string ContactName { get; set; }
///
/// 关联的采购单号
///
public string RelationPurchaseOrderId { get; set; }
///
/// 关联账单Id
///
public string RelationPayBillNo { get; set; }
///
/// 归属店铺
///
public string BelongShop { get; set; }
public string BelongFileName { get; set; }
///
/// 错误信息
///
public string ErrorMessage { get; set; }
}
}