using CommunityToolkit.Mvvm.ComponentModel; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BBWYB.Client.Models.PackPurchaseTask { /// /// 条形码 /// public class BarCodeModel : ObservableObject { /// /// 条形码id /// public long Id { get; set; } private string brand; /// /// 品牌 /// public string Brand { get => brand; set { SetProperty(ref brand, value); } } private string brandName; /// /// 品名 /// public string BrandName { get => brandName; set { SetProperty(ref brandName, value); } } private string producNo; /// /// 货号 /// public string ProductNo { get => producNo; set { SetProperty(ref producNo, value); } } private string skuName; /// /// sku名称 /// public string SkuName { get => skuName; set { SetProperty(ref skuName, value); } } private string skuId; /// /// skuId(条形码号=POP+SkuId) /// public string SkuId { get => skuId; set { SetProperty(ref skuId, value); } } private string modelNo; /// /// 型号 /// public string ModelNo { get => modelNo; set { SetProperty(ref modelNo, value); } } private BarcodeLabelModel labelModel = BarcodeLabelModel.精简模板; /// /// 模板标签 /// public BarcodeLabelModel LabelModel { get => labelModel; set { SetProperty (ref labelModel, value); } } } }