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.
65 lines
1.6 KiB
65 lines
1.6 KiB
using BBWY.Client.Models.PackTask;
|
|
|
|
namespace BBWY.Client.Models
|
|
{
|
|
/// <summary>
|
|
/// 条形码
|
|
/// </summary>
|
|
public class BarCodeModel:NotifyObject
|
|
{
|
|
|
|
/// <summary>
|
|
/// 条形码id
|
|
/// </summary>
|
|
public long Id { get; set; }
|
|
|
|
|
|
private string brand;
|
|
/// <summary>
|
|
/// 品牌
|
|
/// </summary>
|
|
public string Brand { get=>brand; set { Set(ref brand, value); } }
|
|
|
|
private string brandName;
|
|
/// <summary>
|
|
/// 品名
|
|
/// </summary>
|
|
public string BrandName { get => brandName; set { Set(ref brandName, value); } }
|
|
|
|
|
|
private string producNo;
|
|
/// <summary>
|
|
/// 货号
|
|
/// </summary>
|
|
public string ProductNo { get => producNo; set { Set(ref producNo, value); } }
|
|
|
|
private string skuName;
|
|
/// <summary>
|
|
/// sku名称
|
|
/// </summary>
|
|
public string SkuName { get => skuName; set { Set(ref skuName, value); } }
|
|
|
|
|
|
private string skuId;
|
|
/// <summary>
|
|
/// skuId(条形码号=POP+SkuId)
|
|
/// </summary>
|
|
public string SkuId { get => skuId; set { Set(ref skuId, value); } }
|
|
|
|
|
|
private string modelNo;
|
|
/// <summary>
|
|
/// 型号
|
|
/// </summary>
|
|
public string ModelNo { get => modelNo; set { Set(ref modelNo, value); } }
|
|
|
|
|
|
|
|
|
|
private BarcodeLabelModel labelModel= BarcodeLabelModel.精简模板;
|
|
/// <summary>
|
|
/// 模板标签
|
|
/// </summary>
|
|
public BarcodeLabelModel LabelModel { get => labelModel; set { Set(ref labelModel, value); } }
|
|
}
|
|
}
|
|
|