using System;
using System.Collections.Generic;
using System.Text;
namespace BBWY.Server.Model.Dto
{
public class BatchPurchaseCargoParamRequestV2
{
///
/// 采购商品Id
///
public string ProductId { get; set; }
///
/// 采购SkuId
///
public string SkuId { get; set; }
///
/// 采购SpecId 1688独有
///
public string SpecId { get; set; }
///
/// 采购SKU数量
///
public int Quantity { get; set; }
#region BelongInfo
///
/// 归属SKUId(JD)
///
public string BelongSkuId { get; set; }
/////
///// 归属商品Id(JD)
/////
//public string BelongProductId { get; set; }
/////
///// 归属商品价格(JD)
/////
//public decimal BelongPrice { get; set; }
/////
///// 归属商品标题(JD)
/////
//public string BelongSkuTitle { get; set; }
/////
///// 归属商品Logo(JD)
/////
//public string BelongLogo { get; set; }
///
/// 归属SKU数量(JD)
///
public int BelongQuantity { get; set; }
///
/// 采购方案Id
///
public long BelongSchemeId { get; set; }
#endregion
}
public class BatchPurchaseCargoParamGroupRequestV2
{
///
/// 采购商Id
///
public string PurchaserId { get; set; }
///
/// 采购商名称
///
public string PurchaserName { get; set; }
public Enums.Platform PurchasePlatform { get; set; }
///
/// 下单备注
///
public string Remark { get; set; }
///
/// 采购商品列表
///
public IList CargoParamList { get; set; }
}
}