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.
35 lines
881 B
35 lines
881 B
namespace BBWY.Client.Models.QiKu
|
|
{
|
|
public class PackSkuConfig : NotifyObject
|
|
{
|
|
private int splitCount;
|
|
|
|
public string SkuId { get; set; }
|
|
|
|
public string Logo { get; set; }
|
|
|
|
public string Title { get; set; }
|
|
|
|
/// <summary>
|
|
/// 采购数量
|
|
/// </summary>
|
|
public int PurchaseCount { get; set; }
|
|
|
|
/// <summary>
|
|
/// 分箱数量
|
|
/// </summary>
|
|
public int SplitCount { get => splitCount; set { Set(ref splitCount, value); } }
|
|
}
|
|
|
|
public class PackSkuSplitConfig : NotifyObject
|
|
{
|
|
private int packCount;
|
|
private StoreResponse store;
|
|
|
|
public int Index { get; set; }
|
|
|
|
public int PackCount { get => packCount; set { Set(ref packCount, value); } }
|
|
|
|
public StoreResponse Store { get => store; set { Set(ref store, value); } }
|
|
}
|
|
}
|
|
|