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
{
///
/// 数据库表VRP_HOTEXP_FACE_D所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:shizhanlei-PC 时间:2016-06-06
///
public class VrpHotexpFaceDEntity
{
///
/// 实绩编号(机组+工序点代码+年月日+6位流水)
///
private string resultNo = "";
///
/// 外观检查主记录实绩编号
///
private string mResultNo = "";
///
/// 序号(管号)
///
private string sqeNo = "";
///
/// 管D1
///
private string endD1 = null;
///
/// 管D2
///
private string endD2 = null;
///
/// 管S1
///
private string endS1 = null;
///
/// 管S2
///
private string endS2 = null;
///
/// 管S3
///
private string endS3 = null;
///
/// 管S4
///
private string endS4 = null;
///
/// W
///
private string chkW = null;
///
/// L
///
private string chkL = null;
///
/// 表面质量
///
private string chkRes = "";
///
/// 是否合格(1合格,0不合格)
///
private string chkPass = "";
///
/// 创建时间
///
private string createTime = "";
///
/// 创建人
///
private string createName = "";
///
/// 修改时间
///
private string updateTime = "";
///
/// 修改人
///
private string updateName = "";
///
/// 实绩编号(机组+工序点代码+年月日+6位流水)
///
[Description("实绩编号(机组+工序点代码+年月日+6位流水)")]
[Nullable(false)]
[DataLength(24)]
public string ResultNo
{
get { return resultNo; }
set { resultNo = value; }
}
///
/// 外观检查主记录实绩编号
///
[Description("外观检查主记录实绩编号")]
[Nullable(false)]
[DataLength(22)]
public string MResultNo
{
get { return mResultNo; }
set { mResultNo = value; }
}
///
/// 序号(管号)
///
[Description("序号(管号)")]
[Nullable(true)]
[DataLength(10)]
public string SqeNo
{
get { return sqeNo; }
set { sqeNo = value; }
}
///
/// 管D1
///
[Description("管D1")]
[Nullable(true)]
[DataLength(8)]
public string EndD1
{
get { return endD1; }
set { endD1 = value; }
}
///
/// 管D2
///
[Description("管D2")]
[Nullable(true)]
[DataLength(8)]
public string EndD2
{
get { return endD2; }
set { endD2 = value; }
}
///
/// 管S1
///
[Description("管S1")]
[Nullable(true)]
[DataLength(8)]
public string EndS1
{
get { return endS1; }
set { endS1 = value; }
}
///
/// 管S2
///
[Description("管S2")]
[Nullable(true)]
[DataLength(8)]
public string EndS2
{
get { return endS2; }
set { endS2 = value; }
}
///
/// 管S3
///
[Description("管S3")]
[Nullable(true)]
[DataLength(8)]
public string EndS3
{
get { return endS3; }
set { endS3 = value; }
}
///
/// 管S4
///
[Description("管S4")]
[Nullable(true)]
[DataLength(8)]
public string EndS4
{
get { return endS4; }
set { endS4 = value; }
}
///
/// W
///
[Description("W")]
[Nullable(true)]
[DataLength(8)]
public string ChkW
{
get { return chkW; }
set { chkW = value; }
}
///
/// L
///
[Description("L")]
[Nullable(true)]
[DataLength(8)]
public string ChkL
{
get { return chkL; }
set { chkL = value; }
}
///
/// 表面质量
///
[Description("表面质量")]
[Nullable(true)]
[DataLength(20)]
public string ChkRes
{
get { return chkRes; }
set { chkRes = value; }
}
///
/// 是否合格(1合格,0不合格)
///
[Description("是否合格(1合格,0不合格)")]
[Nullable(true)]
[DataLength(1)]
public string ChkPass
{
get { return chkPass; }
set { chkPass = value; }
}
///
/// 创建时间
///
[Description("创建时间")]
[Nullable(true)]
public string CreateTime
{
get { return createTime; }
set { createTime = value; }
}
///
/// 创建人
///
[Description("创建人")]
[Nullable(true)]
[DataLength(20)]
public string CreateName
{
get { return createName; }
set { createName = value; }
}
///
/// 修改时间
///
[Description("修改时间")]
[Nullable(true)]
public string UpdateTime
{
get { return updateTime; }
set { updateTime = value; }
}
///
/// 修改人
///
[Description("修改人")]
[Nullable(true)]
[DataLength(20)]
public string UpdateName
{
get { return updateName; }
set { updateName = value; }
}
}
}