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.PlnSaleOrd.Entity { /// /// 数据库表CRAFT_FILE_LV2所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DESKTOP-LI8OG3P 时间:2016-08-23 /// public class CraftFileLv2Entity { /// /// 二级工艺文件主键 /// private string pk = ""; /// /// 二级工艺文件号 /// private string craftNoLv2 = ""; /// /// 工序代码(大工序) /// private string processCode = ""; /// /// 工序名称(大工序) /// private string processDesc = ""; /// /// 适用产线代码集合 /// private string plineCode = ""; /// /// 适用产线描述集合 /// private string plineName = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; /// /// 工艺文件路径 /// private string craftPath = ""; /// /// 二级工艺文件主键 /// [Description("二级工艺文件主键")] [Nullable(false)] [DataLength(5)] public string Pk { get { return pk; } set { pk = value; } } /// /// 二级工艺文件号 /// [Description("二级工艺文件号")] [Nullable(true)] [DataLength(150)] public string CraftNoLv2 { get { return craftNoLv2; } set { craftNoLv2 = value; } } /// /// 工序代码(大工序) /// [Description("工序代码(大工序)")] [Nullable(true)] [DataLength(8)] public string ProcessCode { get { return processCode; } set { processCode = value; } } /// /// 工序名称(大工序) /// [Description("工序名称")] [Nullable(true)] [DataLength(50)] public string ProcessDesc { get { return processDesc; } set { processDesc = value; } } /// /// 适用产线代码集合 /// [Description("适用产线代码集合")] [Nullable(true)] [DataLength(600)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 适用产线描述集合 /// [Description("适用产线描述")] [Nullable(true)] [DataLength(3000)] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] 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(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 删除人 /// [Description("删除人")] [Nullable(true)] [DataLength(20)] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// [Description("删除时间")] [Nullable(true)] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志")] [Nullable(false)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 工艺文件路径 /// [Description("工艺文件路径")] [Nullable(true)] [DataLength(200)] public string CraftPath { get { return craftPath; } set { craftPath = value; } } } }