using BBWY.Client.Models.PackTask;
using System.Drawing;
using System.Windows.Media.Imaging;
namespace BBWY.Client.Models
{
///
/// 条形码
///
public class BarCodeModel:NotifyObject
{
///
/// 条形码id
///
public long Id { get; set; }
private string brand;
///
/// 品牌
///
public string Brand { get=>brand; set { Set(ref brand, value); } }
private string brandName;
///
/// 品名
///
public string BrandName { get => brandName; set { Set(ref brandName, value); } }
private string producNo;
///
/// 货号
///
public string ProductNo { get => producNo; set { Set(ref producNo, value); } }
private string skuName;
///
/// sku名称
///
public string SkuName { get => skuName; set { Set(ref skuName, value); } }
private string skuId;
///
/// skuId(条形码号=POP+SkuId)
///
public string SkuId { get => skuId; set { Set(ref skuId, value); } }
private BarcodeLabelModel labelModel= BarcodeLabelModel.精简模板;
///
/// 模板标签
///
public BarcodeLabelModel LabelModel { get => labelModel; set { Set(ref labelModel, value); } }
///
/// 店铺名
///
public string ShopName { get; set; }
}
}