using Prism.Mvvm;
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TeamAAS_VP.Models
{
[SugarTable("ProductWithMes")]
public class ProductWithMes : BindableBase
{
//[SugarColumn(IsPrimaryKey = true)]
//public Guid Id { get; set; } = Guid.NewGuid();
private string _ProductName;
[SugarColumn(IsPrimaryKey = true)]
///
/// 产品名称
///
public string ProductName
{
get { return _ProductName; }
set { SetProperty(ref _ProductName, value); }
}
private string _ProductCode;
///
/// 产品编码
///
public string ProductCode
{
get { return _ProductCode; }
set { SetProperty(ref _ProductCode, value); }
}
private string _ProductKBSN;
///
/// 产品编码
///
public string ProductKBSN
{
get { return _ProductKBSN; }
set { SetProperty(ref _ProductKBSN, value); }
}
private string _ProductColor = "";
///
/// 产品颜色
///
public string ProductColor
{
get { return _ProductColor; }
set { SetProperty(ref _ProductColor, value); }
}
private int _ProductLoadMode;
///
/// 产品加载编号
///
public int ProductLoadMode
{
get { return _ProductLoadMode; }
set { SetProperty(ref _ProductLoadMode, value); }
}
}
}