using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Pur.Entity
{
public class MatAttr
{
private string itemAttrId;
///
/// 属性编码
///
public string ItemAttrId
{
set { itemAttrId = value; }
get { return itemAttrId; }
}
private string itemAttr;
///
/// 物料属性
///
public string ItemAttr
{
set { itemAttr = value; }
get { return itemAttr; }
}
///
/// 采购标准ID
///
private string itemStandardsId;
public string ItemStandardsId
{
get { return itemStandardsId; }
set { itemStandardsId = value; }
}
private string itemUomId;
///
/// 单位换算ID
///
public string ItemUomId
{
get { return itemUomId; }
set { itemUomId = value; }
}
private string itemUnique;
///
/// 唯一值标识
///
public string ItemUnique
{
get { return itemUnique; }
set { itemUnique = value; }
}
private string itemStandardsCode;
///
/// 采购标准编号值
///
public string ItemStandardsCode
{
get { return itemStandardsCode; }
set { itemStandardsCode = value; }
}
}
}