using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace com.steering.mes.mcp.entity { /// /// 接箍车丝实绩自检记录实体类 /// [Serializable] public class ThreadingSelfcheck { /** 序列号 */ private String seqNo; public String SeqNo { get { return seqNo; } set { seqNo = value; } } /** 螺距 */ private String lead; public String Lead { get { return lead; } set { lead = value; } } /** 齿高 */ private String height; public String Height { get { return height; } set { height = value; } } /** 锥度 */ private String taper; public String Taper { get { return taper; } set { taper = value; } } /** 紧密距 */ private String pitchDimeter; public String PitchDimeter { get { return pitchDimeter; } set { pitchDimeter = value; } } /** 计划号 */ private String planNo; public String PlanNo { get { return planNo; } set { planNo = value; } } /** 状态 */ private String state; public String State { get { return state; } set { state = value; } } } }