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