using Core.Mes.Client.Comm.Attribute; using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; namespace com.steering.mes.mcp.entity {/// /// 数据库表VRP_ROTEXP_FACE_C所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-201412141732 时间:2016-06-15 /// public class VrpRotexpFaceCEntity { /// /// 实绩编号(机组+工序点代码+年月日+6位流水) /// private string resultNo = ""; /// /// 序号 /// private string lostSqe = ""; /// /// 缺陷代码 /// private string lostCode = ""; /// /// 缺陷名称 /// private string lostName = ""; /// /// 废品整支数 /// private string lostNum = null; /// /// 返切支数 /// private string lostQ = null; /// /// 返切米数 /// private string lostM = null; /// /// 废品吨 /// private string lostWt = null; /// /// 下线支数 /// private string offlineNum = null; /// /// 创建时间 /// private string createTime = ""; /// /// 创建人 /// private string createName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 实绩编号(机组+工序点代码+年月日+6位流水) /// [Description("实绩编号(机组+工序点代码+年月日+6位流水)")] [Nullable(false)] [DataLength(24)] public string ResultNo { get { return resultNo; } set { resultNo = value; } } /// /// 序号 /// [Description("序号")] [Nullable(false)] [DataLength(3)] public string LostSqe { get { return lostSqe; } set { lostSqe = value; } } /// /// 缺陷代码 /// [Description("缺陷代码")] [Nullable(true)] [DataLength(10)] public string LostCode { get { return lostCode; } set { lostCode = value; } } /// /// 缺陷名称 /// [Description("缺陷名称")] [Nullable(true)] [DataLength(10)] public string LostName { get { return lostName; } set { lostName = value; } } /// /// 废品整支数 /// [Description("废品整支数")] [Nullable(true)] [DataLength(5)] public string LostNum { get { return lostNum; } set { lostNum = value; } } /// /// 返切支数 /// [Description("返切支数")] [Nullable(true)] [DataLength(5)] public string LostQ { get { return lostQ; } set { lostQ = value; } } /// /// 返切米数 /// [Description("返切米数")] [Nullable(true)] [DataLength(8)] public string LostM { get { return lostM; } set { lostM = value; } } /// /// 废品吨 /// [Description("废品吨")] [Nullable(true)] [DataLength(8)] public string LostWt { get { return lostWt; } set { lostWt = value; } } /// /// 下线支数 /// [Description("下线支数")] [Nullable(true)] [DataLength(5)] public string OfflineNum { get { return offlineNum; } set { offlineNum = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] public string CreateName { get { return createName; } set { createName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } } }