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.Mch.Mat
{
///
/// 数据库表YDM_OVERSTOCKPIPE_RESULT所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:朱少波 时间:2021-05-18
///
public class YdmOverstockpipeResultEntity
{
///
/// 实绩编号
///
private string resultNo = "";
///
/// 离线编号
///
private string resultNoLx = "";
///
/// 出库单编号
///
private string outstockDoc = "";
///
/// 产权出库单编号
///
private string outstockDoc1 = "";
///
/// 改判出库单编号
///
private string outstockDoc2 = "";
///
/// 判定单号
///
private string jugdeApplyCode = "";
///
/// 操作班次
///
private string proShift = "";
///
/// 操作班组
///
private string proGroup = "";
///
/// 创建时间
///
private string createTime = "";
///
/// 操作时间
///
private string proTime = "";
///
/// 有效标志
///
private string validflag = "";
///
/// 判定炉号
///
private string judgeStoveNo = "";
///
/// 性能批号
///
private string batchNo = "";
///
/// 类型
///
private string flag = "";
///
/// 转压库申请状态
///
private string applyFlag = "";
///
/// 转压库申请人
///
private string applyFlagName = "";
///
/// 转压库申请时间
///
private string applyFlagTime = "";
///
/// 转压库审核通过人
///
private string applyOkName = "";
///
/// 转压库审核通过时间
///
private string applyOkTime = "";
[Description("选择")]
public bool Chk { get; set; }
///
/// 实绩编号
///
[Description("实绩编号")]
[Nullable(false)]
[DataLength(24)]
public string ResultNo
{
get { return resultNo; }
set { resultNo = value; }
}
///
/// 离线编号
///
[Description("离线编号")]
[Nullable(false)]
[DataLength(24)]
public string ResultNoLx
{
get { return resultNoLx; }
set { resultNoLx = value; }
}
///
/// 出库单编号
///
[Description("出库单编号")]
[Nullable(false)]
[DataLength(40)]
public string OutstockDoc
{
get { return outstockDoc; }
set { outstockDoc = value; }
}
///
/// 产权出库单编号
///
[Description("产权出库单编号")]
[Nullable(false)]
[DataLength(40)]
public string OutstockDoc1
{
get { return outstockDoc1; }
set { outstockDoc1 = value; }
}
///
/// 改判出库单编号
///
[Description("改判出库单编号")]
[Nullable(false)]
[DataLength(40)]
public string OutstockDoc2
{
get { return outstockDoc2; }
set { outstockDoc2 = value; }
}
///
/// 判定单号
///
[Description("判定单号")]
[Nullable(false)]
[DataLength(40)]
public string JugdeApplyCode
{
get { return jugdeApplyCode; }
set { jugdeApplyCode = value; }
}
///
/// 操作班次
///
[Description("操作班次")]
[Nullable(true)]
[DataLength(1)]
public string ProShift
{
get { return proShift; }
set { proShift = value; }
}
///
/// 操作班组
///
[Description("操作班组")]
[Nullable(true)]
[DataLength(1)]
public string ProGroup
{
get { return proGroup; }
set { proGroup = value; }
}
///
/// 创建时间
///
[Description("创建时间")]
[Nullable(true)]
public string CreateTime
{
get { return createTime; }
set { createTime = value; }
}
///
/// 操作时间
///
[Description("操作时间")]
[Nullable(true)]
public string ProTime
{
get { return proTime; }
set { proTime = value; }
}
[Description("操作人")]
[Nullable(true)]
public string ProUser { get; set; }
///
/// 有效标志(1:有效,0:无效)
///
[Description("有效标志")]
[Nullable(false)]
[DataLength(1)]
public string Validflag
{
get { return validflag; }
set { validflag = value; }
}
///
/// 判定炉号
///
[Description("判定炉号")]
[Nullable(true)]
[DataLength(20)]
public string JudgeStoveNo
{
get { return judgeStoveNo; }
set { judgeStoveNo = value; }
}
///
/// 性能批号
///
[Description("批号")]
[Nullable(true)]
[DataLength(20)]
public string BatchNo
{
get { return batchNo; }
set { batchNo = value; }
}
///
/// 类型(1-离线转压库,2-余材转压库)
///
[Description("类型(1-离线转压库,2-余材转压库)")]
[Nullable(true)]
[DataLength(20)]
public string Flag
{
get { return flag; }
set { flag = value; }
}
///
/// 产线代码
///
[Description("产线代码")]
public string PlineCode
{ get; set; }
///
/// 产线描述
///
[Description("产线")]
public string PlineName
{ get; set; }
[Description("工序代码")]
public string ProcessCode
{ get; set; }
[Description("支数")]
public decimal? ActCount
{ get; set; }
[Description("重量")]
public decimal? ActWeight
{ get; set; }
///
/// 转压库申请状态(1-申请 2-审核通过)
///
[Description("转压库申请状态(1-申请 2-审核通过)")]
[Nullable(true)]
[DataLength(1)]
public string ApplyFlag
{
get { return applyFlag; }
set { applyFlag = value; }
}
///
/// 转压库申请人
///
[Description("转压库申请人")]
[Nullable(true)]
[DataLength(20)]
public string ApplyFlagName
{
get { return applyFlagName; }
set { applyFlagName = value; }
}
///
/// 转压库申请时间
///
[Description("转压库申请时间")]
[Nullable(true)]
public string ApplyFlagTime
{
get { return applyFlagTime; }
set { applyFlagTime = value; }
}
///
/// 转压库审核通过人
///
[Description("转压库审核通过人")]
[Nullable(true)]
[DataLength(20)]
public string ApplyOkName
{
get { return applyOkName; }
set { applyOkName = value; }
}
///
/// 转压库审核通过时间
///
[Description("转压库审核通过时间")]
[Nullable(true)]
public string ApplyOkTime
{
get { return applyOkTime; }
set { applyOkTime = value; }
}
}
}