| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- using Core.Mes.Client.Comm.Attribute;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace com.steering.mes.mcp.entity
- {/// <summary>
- /// <summary>
- /// 数据库表MCH_HREAD_RESULT_D所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:PC-20160925CXYF 时间:2016-12-28
- /// </summary>
- public class MchHreadResultDEntity
- {
- /// <summary>
- /// 实绩编号(机组+工序点代码+年月日+6位流水)
- /// </summary>
- private string resultNo = "";
- /// <summary>
- /// 实绩编号序号
- /// </summary>
- private string resultNoSqe = "";
- /// <summary>
- /// 紧密距(mm)
- /// </summary>
- private string standoff = "";
- /// <summary>
- /// 锥度in/in
- /// </summary>
- private string taper = "";
- /// <summary>
- /// 螺距
- /// </summary>
- private string pitch = "";
- /// <summary>
- /// 齿高
- /// </summary>
- private string threadH = "";
- /// <summary>
- /// L4
- /// </summary>
- private string l4Val = "";
- /// <summary>
- /// AI
- /// </summary>
- private string aiVal = "";
- /// <summary>
- /// LC
- /// </summary>
- private string lcVal = "";
- /// <summary>
- /// 实绩编号(机组+工序点代码+年月日+6位流水)
- /// </summary>
- [Description("实绩编号(机组+工序点代码+年月日+6位流水)")]
- [Nullable(false)]
- [DataLength(24)]
- public string ResultNo
- {
- get { return resultNo; }
- set { resultNo = value; }
- }
- /// <summary>
- /// 实绩编号序号
- /// </summary>
- [Description("实绩编号序号")]
- [Nullable(false)]
- [DataLength(24)]
- public string ResultNoSqe
- {
- get { return resultNoSqe; }
- set { resultNoSqe = value; }
- }
- /// <summary>
- /// 紧密距(mm)
- /// </summary>
- [Description("紧密距(mm)")]
- [Nullable(true)]
- [DataLength(20)]
- public string Standoff
- {
- get { return standoff; }
- set { standoff = value; }
- }
- /// <summary>
- /// 锥度in/in
- /// </summary>
- [Description("锥度in/in")]
- [Nullable(true)]
- [DataLength(20)]
- public string Taper
- {
- get { return taper; }
- set { taper = value; }
- }
- /// <summary>
- /// 螺距
- /// </summary>
- [Description("螺距")]
- [Nullable(true)]
- [DataLength(20)]
- public string Pitch
- {
- get { return pitch; }
- set { pitch = value; }
- }
- /// <summary>
- /// 齿高
- /// </summary>
- [Description("齿高")]
- [Nullable(true)]
- [DataLength(20)]
- public string ThreadH
- {
- get { return threadH; }
- set { threadH = value; }
- }
- /// <summary>
- /// L4
- /// </summary>
- [Description("L4")]
- [Nullable(true)]
- [DataLength(20)]
- public string L4Val
- {
- get { return l4Val; }
- set { l4Val = value; }
- }
- /// <summary>
- /// AI
- /// </summary>
- [Description("AI")]
- [Nullable(true)]
- [DataLength(20)]
- public string AiVal
- {
- get { return aiVal; }
- set { aiVal = value; }
- }
- /// <summary>
- /// LC
- /// </summary>
- [Description("LC")]
- [Nullable(true)]
- [DataLength(20)]
- public string LcVal
- {
- get { return lcVal; }
- set { lcVal = value; }
- }
- }
- }
|