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.
31 lines
727 B
31 lines
727 B
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace BBWYB.Client.Models
|
|
{
|
|
/// <summary>
|
|
/// 采购商
|
|
/// </summary>
|
|
public class Purchaser : ObservableObject
|
|
{
|
|
private int skuUseCount;
|
|
|
|
public string Id { get; set; }
|
|
|
|
public string Id2 { get; set; }
|
|
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 使用该采购商的SKU数量
|
|
/// </summary>
|
|
public int SkuUseCount { get => skuUseCount; set { SetProperty(ref skuUseCount, value); } }
|
|
|
|
public string ProductId { get; set; }
|
|
|
|
public string Location { get; set; }
|
|
|
|
public Platform Platform { get; set; }
|
|
|
|
public string MemberId { get; set; }
|
|
}
|
|
}
|
|
|