| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.ComponentModel;
- namespace com.steering.mes.zgmil.entity
- {
- /// <summary>
- /// 数据库表MIL_SIZING_TOOL所对应的实体类(生成工具:代码生成工具2.4)
- /// 作者:PC201506012023 时间:2016-01-01
- /// </summary>
- public class MilSizingToolEntity
- {
- /// <summary>
- /// 操作人
- /// </summary>
- private object colUser;
- /// <summary>
- /// 创建时间
- /// </summary>
- private object creatTime;
- /// <summary>
- /// 产线代码
- /// </summary>
- private object plineCode;
- /// <summary>
- /// 实绩编号
- /// </summary>
- private object resultNo;
- /// <summary>
- /// 工具更换
- /// </summary>
- private object toolChange;
- /// <summary>
- /// 工具更换时间
- /// </summary>
- private object toolChangeTime;
- /// <summary>
- /// 操作班次
- /// </summary>
- private object colShift;
- /// <summary>
- /// 操作班组
- /// </summary>
- private object colGroup;
- public MilSizingToolEntity()
- {
- colUser = "";
- creatTime = "";
- plineCode = "";
- resultNo = "";
- toolChange = "";
- toolChangeTime = "";
- colShift = "";
- colGroup = "";
- }
- /// <summary>
- /// 操作人
- /// </summary>
- [Description("操作人")]
- public object ColUser
- {
- get { return colUser; }
- set
- {
- if (value == null)
- {
- colUser = DBNull.Value;
- }
- else
- {
- colUser = value;
- }
- }
- }
- /// <summary>
- /// 创建时间
- /// </summary>
- [Description("创建时间")]
- public object CreatTime
- {
- get { return creatTime; }
- set
- {
- if (value == null)
- {
- creatTime = DBNull.Value;
- }
- else
- {
- creatTime = value;
- }
- }
- }
- /// <summary>
- /// 产线代码
- /// </summary>
- [Description("产线代码")]
- public object PlineCode
- {
- get { return plineCode; }
- set
- {
- if (value == null)
- {
- plineCode = DBNull.Value;
- }
- else
- {
- plineCode = value;
- }
- }
- }
- /// <summary>
- /// 实绩编号
- /// </summary>
- [Description("实绩编号")]
- public object ResultNo
- {
- get { return resultNo; }
- set
- {
- if (value == null)
- {
- resultNo = DBNull.Value;
- }
- else
- {
- resultNo = value;
- }
- }
- }
- /// <summary>
- /// 工具更换
- /// </summary>
- [Description("工具更换")]
- public object ToolChange
- {
- get { return toolChange; }
- set
- {
- if (value == null)
- {
- toolChange = DBNull.Value;
- }
- else
- {
- toolChange = value;
- }
- }
- }
- /// <summary>
- /// 工具更换时间
- /// </summary>
- [Description("工具更换时间")]
- public object ToolChangeTime
- {
- get { return toolChangeTime; }
- set
- {
- if (value == null)
- {
- toolChangeTime = DBNull.Value;
- }
- else
- {
- toolChangeTime = 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;
- }
- }
- }
- }
- }
|