namespace BBWYB.Server.Model.Dto
{
public class AssociationOrderRequest
/// <summary>
/// 订单Id
/// </summary>
public string OrderId { get; set; }
/// 店铺Id (Shop对象的ShopId)
public long ShopId { get; set; }
/// 采购单列表
public IList<AssociationPurchaseOrderRequest> AssociationPurchaseOrderList { get; set; }
}