using Core.Mes.Client.Comm.Attribute;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace Core.StlMes.Client.PnCost.Models
{
///
/// 数据库表PUR_MAT所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:doubi-PC 时间:2016-09-18
///
public class PurMatEntity
{
///
/// 物料编码
///
private string itemCode = "";
///
/// 物料描述
///
private string itemDesc = "";
///
/// 物料名称
///
private string itemName = "";
///
/// 库存单位
///
private string weightUnit = "";
///
/// 物料分类编码
///
private string arcCode = "";
///
/// 数据状态(1有效、0无效)
///
private string validflag = "";
///
/// 创建人
///
private string createName = "";
///
/// 创建时间
///
private string createTime = "";
///
/// 修改人
///
private string updateName = "";
///
/// 修改时间
///
private string updateTime = "";
///
/// 物料编码
///
[Description("物料编码")]
[Nullable(false)]
[DataLength(200)]
public string ItemCode
{
get { return itemCode; }
set { itemCode = value; }
}
///
/// 物料描述
///
[Description("物料描述")]
[Nullable(true)]
[DataLength(530)]
public string ItemDesc
{
get { return itemDesc; }
set { itemDesc = value; }
}
///
/// 物料名称
///
[Description("物料名称")]
[Nullable(false)]
[DataLength(200)]
public string ItemName
{
get { return itemName; }
set { itemName = value; }
}
///
/// 库存单位
///
[Description("库存单位")]
[Nullable(true)]
[DataLength(20)]
public string WeightUnit
{
get { return weightUnit; }
set { weightUnit = value; }
}
///
/// 物料分类编码
///
[Description("分类编码")]
[Nullable(true)]
[DataLength(40)]
public string ArcCode
{
get { return arcCode; }
set { arcCode = value; }
}
///
/// 数据状态(1有效、0无效)
///
[Description("数据状态")]
[Nullable(true)]
[DataLength(1)]
public string Validflag
{
get { return validflag; }
set { validflag = value; }
}
///
/// 创建人
///
[Description("创建人")]
[Nullable(true)]
[DataLength(40)]
public string CreateName
{
get { return createName; }
set { createName = value; }
}
///
/// 创建时间
///
[Description("创建时间")]
[Nullable(true)]
public string CreateTime
{
get { return createTime; }
set { createTime = value; }
}
///
/// 修改人
///
[Description("修改人")]
[Nullable(true)]
[DataLength(40)]
public string UpdateName
{
get { return updateName; }
set { updateName = value; }
}
///
/// 修改时间
///
[Description("修改时间")]
[Nullable(true)]
public string UpdateTime
{
get { return updateTime; }
set { updateTime = value; }
}
}
}