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.
25 lines
582 B
25 lines
582 B
namespace BBWY.Client.Models
|
|
{
|
|
/// <summary>
|
|
/// 采购商
|
|
/// </summary>
|
|
public class Purchaser : NotifyObject
|
|
{
|
|
private int skuUseCount;
|
|
|
|
public string Id { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 使用该采购商的SKU数量
|
|
/// </summary>
|
|
public int SkuUseCount { get => skuUseCount; set { Set(ref skuUseCount, value); } }
|
|
|
|
public string ProductId { get; set; }
|
|
|
|
public string Location { get; set; }
|
|
|
|
public Platform Platform { get; set; }
|
|
}
|
|
}
|
|
|