7 changed files with 132 additions and 8 deletions
@ -0,0 +1,9 @@ |
|||||
|
namespace BBWY.Client.Models |
||||
|
{ |
||||
|
public class StoreResponse |
||||
|
{ |
||||
|
public string StoreId { get; set; } |
||||
|
|
||||
|
public string StoreName { get; set; } |
||||
|
} |
||||
|
} |
@ -0,0 +1,35 @@ |
|||||
|
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); } } |
||||
|
} |
||||
|
} |
Loading…
Reference in new issue