步步为盈
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.

76 lines
2.0 KiB

2 years ago
using GalaSoft.MvvmLight;
using System;
using System.Collections.Generic;
using System.Text;
namespace BBWY.Client.Models.QualityTask
{
/// <summary>
/// 配件sku
/// </summary>
public class PurchaseSku : NotifyObject
{
2 years ago
public string PurchaseProductId { get; set; }
2 years ago
/// <summary>
/// 配件图
/// </summary>
private string logo;
/// <summary>
/// 配件商品Id
/// </summary>
private string purchaseSkuId;
/// <summary>
/// 配件名称
/// </summary>
private string title;
/// <summary>
/// 是否需要配置合格证
/// </summary>
private bool isNeedCer;
/// <summary>
/// 配件图
/// </summary>
public string Logo { get => logo; set { Set(ref logo, value); } }
/// <summary>
/// 配件商品Id
/// </summary>
public string PurchaseSkuId { get => purchaseSkuId; set { Set(ref purchaseSkuId, value); } }
/// <summary>
/// 配件名称
/// </summary>
public string Title { get => title; set { Set(ref title, value); } }
/// <summary>
/// 是否需要配置合格证
/// </summary>
public bool IsNeedCer { get => isNeedCer; set { Set(ref isNeedCer, value); } }
2 years ago
/// <summary>
/// 合格证配置信息
/// </summary>
public CertificateModel cerDTO;
2 years ago
/// <summary>
/// 合格证配置信息
/// </summary>
2 years ago
public CertificateModel CerDTO { get => cerDTO; set { Set(ref cerDTO, value); } }
2 years ago
private bool isSetCertificate;
/// <summary>
/// 设置显示(合格证)
/// </summary>
public bool IsSetCertificate
{
get => isSetCertificate; set
{
Set(ref isSetCertificate, value);
//IsNeedCertificateModel = IsSetCertificate ? Need.不需要 : Need.需要;
}
}
2 years ago
2 years ago
}
}