using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; namespace com.steering.mes.zgmil.entity { /// /// 数据库表MIL_QA_DEFECT所对应的实体类(生成工具:代码生成工具2.4) /// 作者:PC201506012023 时间:2015-09-14 /// public class MilQaDefectEntity { /// /// 实绩编号 /// private object resultNo; /// /// 抽检管编号 /// private object samplePipeNo; /// /// 缺陷项 /// private object defect; /// /// 是否合格 /// private object isQuelified; public MilQaDefectEntity() { resultNo = ""; samplePipeNo = ""; defect = ""; isQuelified = ""; } /// /// 实绩编号 /// [Description("实绩编号")] public object ResultNo { get { return resultNo; } set { if (value == null) { resultNo = DBNull.Value; } else { resultNo = value; } } } /// /// 抽检管编号 /// [Description("抽检管编号")] public object SamplePipeNo { get { return samplePipeNo; } set { if (value == null) { samplePipeNo = DBNull.Value; } else { samplePipeNo = value; } } } /// /// 缺陷项 /// [Description("缺陷项")] public object Defect { get { return defect; } set { if (value == null) { defect = DBNull.Value; } else { defect = value; } } } /// /// 是否合格 /// [Description("是否合格")] public object IsQuelified { get { return isQuelified; } set { if (value == null) { isQuelified = DBNull.Value; } else { isQuelified = value; } } } } }