| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using Core.Mes.Client.Comm.Attribute;
- namespace Core.StlMes.Client.Mcp.Control.Entity
- {
- /// <summary>
- /// 数据库表MCH_FINAL_CHECK_RESULT_MAT_NO所对应的实体类(生成工具:代码生成工具3.0)
- /// 作者:朱少波 时间:2019-07-12
- /// </summary>
- public class MchFinalCheckResultMatNoEntity
- {
- [Description("选择")]
- public bool Chk { get; set; }
- /// <summary>
- /// 实绩编号
- /// </summary>
- private string resultNo = "";
- /// <summary>
- /// 材料号(管号)
- /// </summary>
- private string matNo = "";
- /// <summary>
- /// 喷印管号
- /// </summary>
- private decimal? measuringSeq = null;
- /// <summary>
- /// 逐支跟踪号
- /// </summary>
- private string barCode = "";
- /// <summary>
- /// 长度
- /// </summary>
- private decimal? actLen = null;
- /// <summary>
- /// 重量
- /// </summary>
- private decimal? actWeight = null;
- /// <summary>
- /// 实绩编号
- /// </summary>
- [Description("实绩编号")]
- [Nullable(false)]
- [DataLength(24)]
- public string ResultNo
- {
- get { return resultNo; }
- set { resultNo = value; }
- }
- /// <summary>
- /// 材料号(管号)
- /// </summary>
- [Description("材料号")]
- [Nullable(false)]
- [DataLength(20)]
- public string MatNo
- {
- get { return matNo; }
- set { matNo = value; }
- }
- /// <summary>
- /// 喷印管号
- /// </summary>
- [Description("喷印管号")]
- [Nullable(true)]
- [DataLength(10)]
- public decimal? MeasuringSeq
- {
- get { return measuringSeq; }
- set { measuringSeq = value; }
- }
- /// <summary>
- /// 逐支跟踪号
- /// </summary>
- [Description("逐支跟踪号")]
- [Nullable(true)]
- [DataLength(20)]
- public string BarCode
- {
- get { return barCode; }
- set { barCode = value; }
- }
- /// <summary>
- /// 长度
- /// </summary>
- [Description("长度")]
- [Nullable(true)]
- [DataLength(9)]
- public decimal? ActLen
- {
- get { return actLen; }
- set { actLen = value; }
- }
- /// <summary>
- /// 重量
- /// </summary>
- [Description("重量")]
- [Nullable(true)]
- [DataLength(11)]
- public decimal? ActWeight
- {
- get { return actWeight; }
- set { actWeight = value; }
- }
- /// <summary>
- /// 0-合格 1-不合 2-废品
- /// </summary>
- private string station = "";
- /// <summary>
- /// 0-合格 1-不合 2-废品
- /// </summary>
- [Description("状态")]
- [Nullable(true)]
- [DataLength(1)]
- public string Station
- {
- get { return station; }
- set { station = value; }
- }
- }
- }
|