You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.3 KiB
48 lines
1.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
namespace BBWYB.Client.Models
|
|
{
|
|
public partial class PurchaseSchemeResponse
|
|
{
|
|
public long Id { get; set; }
|
|
public DateTime? CreateTime { get; set; }
|
|
/// <summary>
|
|
/// 采购默认成本
|
|
/// </summary>
|
|
public decimal? DefaultCost { get; set; }
|
|
public string ProductId { get; set; }
|
|
/// <summary>
|
|
/// 采购商Id
|
|
/// </summary>
|
|
public string PurchaserId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 采购商Id
|
|
/// </summary>
|
|
public string PurchaserId2 { get; set; }
|
|
public string PurchaserName { get; set; }
|
|
/// <summary>
|
|
/// 发货地
|
|
/// </summary>
|
|
public string PurchaserLocation { get; set; }
|
|
/// <summary>
|
|
/// 采购实际成本
|
|
/// </summary>
|
|
public decimal? RealCost { get; set; }
|
|
public string SkuId { get; set; }
|
|
public long ShopId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 采购平台
|
|
/// </summary>
|
|
public Platform PurchasePlatform { get; set; }
|
|
|
|
/// <summary>
|
|
/// 最后采购时间
|
|
/// </summary>
|
|
public DateTime? LastPurchaseTime { get; set; }
|
|
|
|
public List<PurchaseSchemeProductResponse> PurchaseSchemeProductList { get; set; }
|
|
}
|
|
|
|
}
|
|
|