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.

70 lines
1.8 KiB

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
{
/// <summary>
/// 条形码
/// </summary>
public class BarCodeModel : ObservableObject
{
/// <summary>
/// 条形码id
/// </summary>
public long Id { get; set; }
private string brand;
/// <summary>
/// 品牌
/// </summary>
public string Brand { get => brand; set { SetProperty(ref brand, value); } }
private string brandName;
/// <summary>
/// 品名
/// </summary>
public string BrandName { get => brandName; set { SetProperty(ref brandName, value); } }
private string producNo;
/// <summary>
/// 货号
/// </summary>
public string ProductNo { get => producNo; set { SetProperty(ref producNo, value); } }
private string skuName;
/// <summary>
/// sku名称
/// </summary>
public string SkuName { get => skuName; set { SetProperty(ref skuName, value); } }
private string skuId;
/// <summary>
/// skuId(条形码号=POP+SkuId)
/// </summary>
public string SkuId { get => skuId; set { SetProperty(ref skuId, value); } }
private string modelNo;
/// <summary>
/// 型号
/// </summary>
public string ModelNo { get => modelNo; set { SetProperty(ref modelNo, value); } }
private BarcodeLabelModel labelModel = BarcodeLabelModel.;
/// <summary>
/// 模板标签
/// </summary>
public BarcodeLabelModel LabelModel { get => labelModel; set { SetProperty (ref labelModel, value); } }
}
}