| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ComponentModel;
- namespace com.steering.mes.zgmil.entity
- {
- /// <summary>
- /// 数据库表MIL_HOT_CHECK所对应的实体类(生成工具:代码生成工具2.4)
- /// 作者:PC201409231755 时间:2015-10-27
- /// </summary>
- public class MilHotCheckEntity
- {
- /// <summary>
- /// 炉号
- /// </summary>
- private object judgeStoveNo;
- /// <summary>
- /// 标准
- /// </summary>
- private object standard;
- /// <summary>
- /// 品种
- /// </summary>
- private object kidn;
- /// <summary>
- /// 钢种
- /// </summary>
- private object steel;
- /// <summary>
- /// 钢级
- /// </summary>
- private object grade;
- /// <summary>
- /// 规格
- /// </summary>
- private object pipeSize;
- /// <summary>
- /// 编号
- /// </summary>
- private object seralNum;
- /// <summary>
- /// 班次
- /// </summary>
- private object colShift;
- /// <summary>
- /// 班组
- /// </summary>
- private object colGroup;
- /// <summary>
- /// 检验员
- /// </summary>
- private object inspector;
- /// <summary>
- /// 抽检时间
- /// </summary>
- private object checkDate;
- /// <summary>
- /// 备注
- /// </summary>
- private object remark;
- /// <summary>
- /// 产线代码
- /// </summary>
- private object plineCode;
- public object PlineCode
- {
- get { return plineCode; }
- set { plineCode = value; }
- }
- /// <summary>
- /// 实绩编号
- /// </summary>
- private object resultNo;
- public object ResultNo
- {
- get { return resultNo; }
- set { resultNo = value; }
- }
- public MilHotCheckEntity()
- {
- resultNo = "";
- plineCode = "";
- judgeStoveNo = "";
- standard = "";
- kidn = "";
- steel = "";
- grade = "";
- pipeSize = "";
- seralNum = "";
- colShift = "";
- colGroup = "";
- inspector = "";
- checkDate = "";
- remark = "";
- }
- public void Clear()
- {
- resultNo = "";
- plineCode = "";
- judgeStoveNo = "";
- standard = "";
- kidn = "";
- steel = "";
- grade = "";
- pipeSize = "";
- seralNum = "";
- colShift = "";
- colGroup = "";
- inspector = "";
- checkDate = "";
- remark = "";
- }
- /// <summary>
- /// 炉号
- /// </summary>
- [Description("炉号")]
- public object JudgeStoveNo
- {
- get { return judgeStoveNo; }
- set
- {
- if (value == null)
- {
- judgeStoveNo = DBNull.Value;
- }
- else
- {
- judgeStoveNo = value;
- }
- }
- }
- /// <summary>
- /// 标准
- /// </summary>
- [Description("标准")]
- public object Standard
- {
- get { return standard; }
- set
- {
- if (value == null)
- {
- standard = DBNull.Value;
- }
- else
- {
- standard = value;
- }
- }
- }
- /// <summary>
- /// 品种
- /// </summary>
- [Description("品种")]
- public object Kidn
- {
- get { return kidn; }
- set
- {
- if (value == null)
- {
- kidn = DBNull.Value;
- }
- else
- {
- kidn = value;
- }
- }
- }
- /// <summary>
- /// 钢种
- /// </summary>
- [Description("钢种")]
- public object Steel
- {
- get { return steel; }
- set
- {
- if (value == null)
- {
- steel = DBNull.Value;
- }
- else
- {
- steel = value;
- }
- }
- }
- /// <summary>
- /// 钢级
- /// </summary>
- [Description("钢级")]
- public object Grade
- {
- get { return grade; }
- set
- {
- if (value == null)
- {
- grade = DBNull.Value;
- }
- else
- {
- grade = value;
- }
- }
- }
- /// <summary>
- /// 规格
- /// </summary>
- [Description("规格")]
- public object PipeSize
- {
- get { return pipeSize; }
- set
- {
- if (value == null)
- {
- pipeSize = DBNull.Value;
- }
- else
- {
- pipeSize = value;
- }
- }
- }
- /// <summary>
- /// 编号
- /// </summary>
- [Description("编号")]
- public object SeralNum
- {
- get { return seralNum; }
- set
- {
- if (value == null)
- {
- seralNum = DBNull.Value;
- }
- else
- {
- seralNum = value;
- }
- }
- }
- /// <summary>
- /// 班次
- /// </summary>
- [Description("班次")]
- public object ColShift
- {
- get { return colShift; }
- set
- {
- if (value == null)
- {
- colShift = DBNull.Value;
- }
- else
- {
- colShift = value;
- }
- }
- }
- /// <summary>
- /// 班组
- /// </summary>
- [Description("班组")]
- public object ColGroup
- {
- get { return colGroup; }
- set
- {
- if (value == null)
- {
- colGroup = DBNull.Value;
- }
- else
- {
- colGroup = value;
- }
- }
- }
- /// <summary>
- /// 检验员
- /// </summary>
- [Description("检验员")]
- public object Inspector
- {
- get { return inspector; }
- set
- {
- if (value == null)
- {
- inspector = DBNull.Value;
- }
- else
- {
- inspector = value;
- }
- }
- }
- /// <summary>
- /// 抽检时间
- /// </summary>
- [Description("抽检时间")]
- public object CheckDate
- {
- get { return checkDate; }
- set
- {
- if (value == null)
- {
- checkDate = DBNull.Value;
- }
- else
- {
- checkDate = value;
- }
- }
- }
- /// <summary>
- /// 备注
- /// </summary>
- [Description("备注")]
- public object Remark
- {
- get { return remark; }
- set
- {
- if (value == null)
- {
- remark = DBNull.Value;
- }
- else
- {
- remark = value;
- }
- }
- }
- }
-
- }
|