| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- 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
- {
- /// <summary>
- /// 数据库表PUR_MAT所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:doubi-PC 时间:2016-09-18
- /// </summary>
- public class PurMatEntity
- {
- /// <summary>
- /// 物料编码
- /// </summary>
- private string itemCode = "";
- /// <summary>
- /// 物料描述
- /// </summary>
- private string itemDesc = "";
- /// <summary>
- /// 物料名称
- /// </summary>
- private string itemName = "";
- /// <summary>
- /// 库存单位
- /// </summary>
- private string weightUnit = "";
- /// <summary>
- /// 物料分类编码
- /// </summary>
- private string arcCode = "";
- /// <summary>
- /// 数据状态(1有效、0无效)
- /// </summary>
- private string validflag = "";
- /// <summary>
- /// 创建人
- /// </summary>
- private string createName = "";
- /// <summary>
- /// 创建时间
- /// </summary>
- private string createTime = "";
- /// <summary>
- /// 修改人
- /// </summary>
- private string updateName = "";
- /// <summary>
- /// 修改时间
- /// </summary>
- private string updateTime = "";
-
-
- /// <summary>
- /// 物料编码
- /// </summary>
- [Description("物料编码")]
- [Nullable(false)]
- [DataLength(200)]
- public string ItemCode
- {
- get { return itemCode; }
- set { itemCode = value; }
- }
- /// <summary>
- /// 物料描述
- /// </summary>
- [Description("物料描述")]
- [Nullable(true)]
- [DataLength(530)]
- public string ItemDesc
- {
- get { return itemDesc; }
- set { itemDesc = value; }
- }
- /// <summary>
- /// 物料名称
- /// </summary>
- [Description("物料名称")]
- [Nullable(false)]
- [DataLength(200)]
- public string ItemName
- {
- get { return itemName; }
- set { itemName = value; }
- }
- /// <summary>
- /// 库存单位
- /// </summary>
- [Description("库存单位")]
- [Nullable(true)]
- [DataLength(20)]
- public string WeightUnit
- {
- get { return weightUnit; }
- set { weightUnit = value; }
- }
- /// <summary>
- /// 物料分类编码
- /// </summary>
- [Description("分类编码")]
- [Nullable(true)]
- [DataLength(40)]
- public string ArcCode
- {
- get { return arcCode; }
- set { arcCode = value; }
- }
- /// <summary>
- /// 数据状态(1有效、0无效)
- /// </summary>
- [Description("数据状态")]
- [Nullable(true)]
- [DataLength(1)]
- public string Validflag
- {
- get { return validflag; }
- set { validflag = value; }
- }
- /// <summary>
- /// 创建人
- /// </summary>
- [Description("创建人")]
- [Nullable(true)]
- [DataLength(40)]
- public string CreateName
- {
- get { return createName; }
- set { createName = value; }
- }
- /// <summary>
- /// 创建时间
- /// </summary>
- [Description("创建时间")]
- [Nullable(true)]
- public string CreateTime
- {
- get { return createTime; }
- set { createTime = value; }
- }
- /// <summary>
- /// 修改人
- /// </summary>
- [Description("修改人")]
- [Nullable(true)]
- [DataLength(40)]
- public string UpdateName
- {
- get { return updateName; }
- set { updateName = value; }
- }
- /// <summary>
- /// 修改时间
- /// </summary>
- [Description("修改时间")]
- [Nullable(true)]
- public string UpdateTime
- {
- get { return updateTime; }
- set { updateTime = value; }
- }
-
- }
- }
|