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