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