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.Mcp.Entity { /// /// 数据库表COUPLING_INSPECTION_RESULT所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-20180117CCCC 时间:2018-08-24 /// public class CouplingInspectionResultEntity { /// /// 实绩编号 /// private string resultNo = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 炉次计划号 /// private string zyPlanId = ""; /// /// 工单号(炉次计划号+01流水) /// private string woId = ""; /// /// 一次合格个数 /// private decimal? qualiriedPcs = null; /// /// 废品个数 /// private decimal? rejectedPcs = null; /// /// 检验个数 /// private decimal? inspectPieces = null; /// /// 采集方式(0-接口采集,1-人工录入) /// private string colMode = ""; /// /// 采集/录入时间 /// private string colTime = ""; /// /// 创建人 /// private string colUser = ""; /// /// 操作班次 /// private string colShift = ""; /// /// 操作班组 /// private string colGroup = ""; /// /// 探伤标准 /// private string inspStandard = ""; /// /// 试片类型 /// private string specimenType = ""; /// /// 试片显示 /// private string specimenMagnetic = ""; /// /// 磁粉种类 /// private string magneticPowder = ""; /// /// 磁悬液浓度 /// private decimal? concentration = null; /// /// 线圈电流强度 /// private decimal? coilIntensity = null; /// /// 中心棒电流强度 /// private decimal? centerIntensity = null; /// /// 退磁电压(V) /// private decimal? voltage = null; /// /// 备注 /// private string memo = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 操作工 /// private string colOperator = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateDate = ""; /// /// 不合格原因 /// private string unqualiriedReason = ""; /// /// 不合格个数 /// private decimal? unqualiriedPcs = null; /// /// 修后复探量 /// private decimal? amountPcs = null; /// /// 最终合格个数 /// private decimal? finalQualified = null; /// /// 废品原因 /// private string rejectedReason = ""; /// /// 是否全项委托(0否,1是) /// private string ifAllOutWork = ""; /// /// 离线个数 /// private decimal? offNum = null; /// /// 产线名称 /// private string plineName = ""; ///是否确认 private string confirm = ""; /// ///确认 /// [Description("是否确认")] [Nullable(true)] [DataLength(1)] public string Confirm { get { return confirm; } set { confirm = value; } } /// ///探伤报告 /// private string report = ""; /// ///探伤报告 /// [Description("探伤报告")] [Nullable(true)] [DataLength(100)] public string Report { get { return report; } set { report = value; } } /// ///签发者 /// private string issued = ""; /// ///签发者 /// [Description("签发者")] [Nullable(true)] [DataLength(100)] public string Issued { get { return issued; } set { issued = value; } } /// ///磁化时间MAGTIMES /// private string magtimes = ""; /// ///磁化时间 /// [Description("磁化时间")] [Nullable(true)] [DataLength(100)] public string Magtimes { get { return magtimes; } set { magtimes = value; } } /// ///检测位置及方向POSITION /// private string position = ""; /// /// 检测位置及方向 /// [Description("检测位置及方向")] [Nullable(true)] [DataLength(30)] public string Position { get { return position; } set { position = value; } } /// /// 炉号JUDGE_STOVE_NO /// private string judgeStoveNo = ""; /// /// 炉号 /// [Description("炉号")] [Nullable(true)] [DataLength(20)] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 批号BATCH_NO /// private string batchNo = ""; /// /// 炉号 /// [Description("批号")] [Nullable(true)] [DataLength(20)] public string BatchNo { get { return batchNo; } set { batchNo = value; } } /// /// 实绩编号 /// [Description("实绩编号")] [Nullable(false)] [DataLength(20)] public string ResultNo { get { return resultNo; } set { resultNo = value; } } /// /// 产线代码 /// [Description("产线代码")] [Nullable(false)] [DataLength(20)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 炉次计划号 /// [Description("炉次计划号")] [Nullable(false)] [DataLength(20)] public string ZyPlanId { get { return zyPlanId; } set { zyPlanId = value; } } /// /// 工单号(炉次计划号+01流水) /// [Description("工单号(炉次计划号+01流水)")] [Nullable(false)] [DataLength(20)] public string WoId { get { return woId; } set { woId = value; } } /// /// 一次合格个数 /// [Description("一次合格个数")] [Nullable(true)] [DataLength(6)] public decimal? QualiriedPcs { get { return qualiriedPcs; } set { qualiriedPcs = value; } } /// /// 废品个数 /// [Description("废品个数")] [Nullable(true)] [DataLength(6)] public decimal? RejectedPcs { get { return rejectedPcs; } set { rejectedPcs = value; } } /// /// 检验个数 /// [Description("检验个数")] [Nullable(true)] [DataLength(6)] public decimal? InspectPieces { get { return inspectPieces; } set { inspectPieces = value; } } /// /// 采集方式(0-接口采集,1-人工录入) /// [Description("采集方式(0-接口采集,1-人工录入)")] [Nullable(true)] [DataLength(1)] public string ColMode { get { return colMode; } set { colMode = value; } } /// /// 采集/录入时间 /// [Description("采集/录入时间")] [Nullable(true)] public string ColTime { get { return colTime; } set { colTime = value; } } /// /// 创建人 /// [Description("创建人")] [Nullable(true)] [DataLength(20)] public string ColUser { get { return colUser; } set { colUser = value; } } /// /// 操作班次 /// [Description("操作班次")] [Nullable(true)] [DataLength(1)] public string ColShift { get { return colShift; } set { colShift = value; } } /// /// 操作班组 /// [Description("操作班组")] [Nullable(true)] [DataLength(1)] public string ColGroup { get { return colGroup; } set { colGroup = value; } } /// /// 探伤标准 /// [Description("探伤标准")] [Nullable(true)] [DataLength(20)] public string InspStandard { get { return inspStandard; } set { inspStandard = value; } } /// /// 试片类型 /// [Description("试片类型")] [Nullable(true)] [DataLength(20)] public string SpecimenType { get { return specimenType; } set { specimenType = value; } } /// /// 试片显示 /// [Description("试片显示")] [Nullable(true)] [DataLength(20)] public string SpecimenMagnetic { get { return specimenMagnetic; } set { specimenMagnetic = value; } } /// /// 磁粉种类 /// [Description("磁粉种类")] [Nullable(true)] [DataLength(20)] public string MagneticPowder { get { return magneticPowder; } set { magneticPowder = value; } } /// /// 磁悬液浓度 /// [Description("磁悬液浓度")] [Nullable(true)] [DataLength(6)] public decimal? Concentration { get { return concentration; } set { concentration = value; } } /// /// 线圈电流强度 /// [Description("线圈电流强度")] [Nullable(true)] [DataLength(6)] public decimal? CoilIntensity { get { return coilIntensity; } set { coilIntensity = value; } } /// /// 中心棒电流强度 /// [Description("中心棒电流强度")] [Nullable(true)] [DataLength(6)] public decimal? CenterIntensity { get { return centerIntensity; } set { centerIntensity = value; } } /// /// 退磁电压(V) /// [Description("退磁电压(V)")] [Nullable(true)] [DataLength(6)] public decimal? Voltage { get { return voltage; } set { voltage = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(100)] public string Memo { get { return memo; } set { memo = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 操作工 /// [Description("操作工")] [Nullable(true)] [DataLength(20)] public string ColOperator { get { return colOperator; } set { colOperator = value; } } /// /// 修改人 /// [Description("修改人")] [Nullable(true)] [DataLength(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateDate { get { return updateDate; } set { updateDate = value; } } /// /// 不合格原因 /// [Description("不合格原因")] [Nullable(true)] [DataLength(100)] public string UnqualiriedReason { get { return unqualiriedReason; } set { unqualiriedReason = value; } } /// /// 不合格个数 /// [Description("不合格个数")] [Nullable(true)] [DataLength(6)] public decimal? UnqualiriedPcs { get { return unqualiriedPcs; } set { unqualiriedPcs = value; } } /// /// 修后复探量 /// [Description("修后复探量")] [Nullable(true)] [DataLength(6)] public decimal? AmountPcs { get { return amountPcs; } set { amountPcs = value; } } /// /// 最终合格个数 /// [Description("最终合格个数")] [Nullable(true)] [DataLength(6)] public decimal? FinalQualified { get { return finalQualified; } set { finalQualified = value; } } /// /// 废品原因 /// [Description("废品原因")] [Nullable(true)] [DataLength(100)] public string RejectedReason { get { return rejectedReason; } set { rejectedReason = value; } } /// /// 是否全项委托(0否,1是) /// [Description("是否全项委托(0否,1是)")] [Nullable(true)] [DataLength(1)] public string IfAllOutWork { get { return ifAllOutWork; } set { ifAllOutWork = value; } } /// /// 离线个数 /// [Description("离线个数")] [Nullable(true)] [DataLength(6)] public decimal? OffNum { get { return offNum; } set { offNum = value; } } /// /// 产线名称 /// [Description("产线名称")] [Nullable(true)] [DataLength(100)] public string PlineName { get { return plineName; } set { plineName = value; } } } }