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.
41 lines
990 B
41 lines
990 B
using BBWY.Client.Models.APIModel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BBWY.Client.Models
|
|
{
|
|
public class WareNoSealBoxModel:NotifyObject
|
|
{
|
|
/// <summary>
|
|
/// 店铺Id
|
|
/// </summary>
|
|
public string ShopId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 店铺名称
|
|
/// </summary>
|
|
public string ShopName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 团队名称
|
|
/// </summary>
|
|
public string DepartmentName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 对接人(同团队下)
|
|
/// </summary>
|
|
public string AcceptUserName { get; set; }
|
|
|
|
/// <summary>
|
|
/// 封箱sku列表
|
|
/// </summary>
|
|
private List<WareNoSealBoxSku> sealBoxSkus;
|
|
|
|
/// <summary>
|
|
/// 封箱sku列表
|
|
/// </summary>
|
|
public List<WareNoSealBoxSku> SealBoxSkus { get=> sealBoxSkus; set {Set(ref sealBoxSkus, value); } }
|
|
}
|
|
}
|
|
|