using System;
namespace BBWY.Client.Models
{
///
/// 合格证
///
public class CertificateModel : NotifyObject
{
///
/// 合格证id
///
public long Id { get; set; }
///
/// skuid
///
public string SkuId { get; set; }
private string spuId;
///
/// 品牌
///
public string SpuId { get => spuId; set { Set(ref spuId, value); } }
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 shader;
///
/// 材质
///
public string Shader { get => shader; set { Set(ref shader, value); } }
private string excuteStander;
///
/// 执行标准
///
public string ExcuteStander { get => excuteStander; set { Set(ref excuteStander, value); } }
private string productShop;
///
/// 生产商
///
public string ProductShop { get => productShop; set { Set(ref productShop, value); } }
private string productAdress;
///
/// 地址
///
public string ProductAdress { get => productAdress; set { Set(ref productAdress, value); } }
private string productNo;
///
/// 型号(货号)
///
public string ProductNo { get => productNo; set { Set(ref productNo, value); } }
///
/// 生产日期
///
public DateTime ProductDate { get; set; }
///
/// 经销商
///
public string Reseller { get; set; }
private int isLogo;
///
/// 是否含3cLogo(0没有 ,1有)
///
public int IsLogo { get => isLogo; set { Set(ref isLogo, value); } }
private string factoryNumber;
///
/// 工厂编号
///
public string FactoryNumber { get => factoryNumber; set { Set(ref factoryNumber, value); } }
private CertificateLabelModel labelModel;
public CertificateLabelModel LabelModel { get => labelModel; set { Set(ref labelModel, value); } }
}
}