using System.Collections.Generic;

namespace BBWYB.Server.Model.Dto
{
    public class InputPurchaseSchemeRequest
    {
        public string ShopId { get; set; }
        public string ProductId { get; set; }
        public string SkuId { get; set; }
        /// <summary>
        /// 采购默认成本
        /// </summary>
        public decimal? DefaultCost { get; set; }
        /// <summary>
        /// 采购实际成本
        /// </summary>
        public decimal? RealCost { get; set; }
        /// <summary>
        /// 采购商Id
        /// </summary>
        public string PurchaserId { get; set; }

        /// <summary>
        /// 采购商Id
        /// </summary>
        public string PurchaserId2 { get; set; }

        /// <summary>
        /// 采购商名称
        /// </summary>
        public string PurchaserName { get; set; }
        /// <summary>
        /// 采购商发货地
        /// </summary>
        public string PurchaserLocation { get; set; }
        /// <summary>
        /// 采购平台
        /// </summary>
        public Enums.Platform PurchasePlatform { get; set; } = Enums.Platform.阿里巴巴;

        public IList<InputPurchaseSchemeProductRequest> PurchaseSchemeProductList { get; set; }
    }
}