using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; namespace com.steering.mes.mcp.entity { /// /// 接箍螺纹检验自检记录实体类 /// [Serializable] public class ThreadInspectSelfCheck { /// /// 实绩编号 /// private object resultNo; /// /// 产线代码 /// private object plineCode; /// /// 作业工单号 /// private object zyPlanId; /// /// 接箍编号 /// private object couplingNo; /// /// 锥度 /// private object taper; /// /// 螺距 /// private object lead; /// /// 齿高 /// private object height; /// /// 紧密距 /// private object pdiameterOvality; /// /// L4/断扣 /// private object brokenthread; /// /// AL /// private object al; /// /// 尾扣 /// private object runOut; /// /// 倒角 /// private object chamfer; /// /// 判定 /// private object result; /// /// 牙型 /// private object threadform; private string woId; public string WoId { get { return woId; } set { woId = value; } } private string ifAllOutWork; public string IfAllOutWork { get { return ifAllOutWork; } set { ifAllOutWork = value; } } private string offNum; public string OffNum { get { return offNum; } set { offNum = value; } } public ThreadInspectSelfCheck() { resultNo = ""; plineCode = ""; zyPlanId = ""; couplingNo = ""; taper = ""; lead = ""; height = ""; pdiameterOvality = ""; brokenthread = ""; al = ""; runOut = ""; chamfer = ""; result = ""; threadform = ""; } /// /// 实绩编号 /// [Description("实绩编号")] public object ResultNo { get { return resultNo; } set { if (value == null) { resultNo = DBNull.Value; } else { resultNo = value; } } } /// /// 产线代码 /// [Description("产线代码")] public object PlineCode { get { return plineCode; } set { if (value == null) { plineCode = DBNull.Value; } else { plineCode = value; } } } /// /// 作业工单号 /// [Description("作业工单号")] public object ZyPlanId { get { return zyPlanId; } set { if (value == null) { zyPlanId = DBNull.Value; } else { zyPlanId = value; } } } /// /// 接箍编号 /// [Description("接箍编号")] public object CouplingNo { get { return couplingNo; } set { if (value == null) { couplingNo = DBNull.Value; } else { couplingNo = value; } } } /// /// 锥度 /// [Description("锥度")] public object Taper { get { return taper; } set { if (value == null) { taper = DBNull.Value; } else { taper = value; } } } /// /// 螺距 /// [Description("螺距")] public object Lead { get { return lead; } set { if (value == null) { lead = DBNull.Value; } else { lead = value; } } } /// /// 齿高 /// [Description("齿高")] public object Height { get { return height; } set { if (value == null) { height = DBNull.Value; } else { height = value; } } } /// /// 紧密距 /// [Description("紧密距")] public object PdiameterOvality { get { return pdiameterOvality; } set { if (value == null) { pdiameterOvality = DBNull.Value; } else { pdiameterOvality = value; } } } /// /// L4/断扣 /// [Description("L4/断扣")] public object Brokenthread { get { return brokenthread; } set { if (value == null) { brokenthread = DBNull.Value; } else { brokenthread = value; } } } /// /// AL /// [Description("AL")] public object Al { get { return al; } set { if (value == null) { al = DBNull.Value; } else { al = value; } } } /// /// 尾扣 /// [Description("尾扣")] public object RunOut { get { return runOut; } set { if (value == null) { runOut = DBNull.Value; } else { runOut = value; } } } /// /// 倒角 /// [Description("倒角")] public object Chamfer { get { return chamfer; } set { if (value == null) { chamfer = DBNull.Value; } else { chamfer = value; } } } /// /// 判定 /// [Description("判定")] public object Result { get { return result; } set { if (value == null) { result = DBNull.Value; } else { result = value; } } } /// /// 牙型 /// [Description("牙型")] public object Threadform { get { return threadform; } set { if (value == null) { threadform = DBNull.Value; } else { threadform = value; } } } } }