using Core.Mes.Client.Comm.Attribute;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace Core.StlMes.Client.ZGMil.Entity
{
///
/// 数据库表QCM_ZG_JUDGE_INPUT_RECORD所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:PC-20160918TFRG 时间:2020-10-16
///
public class QcmZgJudgeInputRecordEntity
{
///
/// 申请判定单号
///
private string jugdeApplyCode = "";
///
/// 炉号
///
private string judgeStoveNo = "";
///
/// 批号
///
private string batchNo = "";
///
/// 组号
///
private string batchGroudNo = "";
///
/// 工序代码(A\B\C\D.....)
///
private string processCode = "";
///
/// 产线代码
///
private string plineCode = "";
///
/// 支数
///
private decimal? actCount = null;
///
/// 实重
///
private decimal? actWeight = null;
///
/// 理论重量
///
private decimal? actTheoryWeight = null;
///
/// 原投料量
///
private decimal? inputWeight = null;
///
/// 原投料支数(单倍坯)
///
private decimal? inputCount = null;
///
/// 调整后投料量
///
private decimal? inputWeight2 = null;
///
/// 调整后料支数(单倍坯)
///
private decimal? inputCount2 = null;
///
/// 结转年月
///
private string balYearMonth = "";
///
/// 申请判定顺序号
///
private string jugdeApplySequeno = "";
///
/// 操作人
///
private string colName = "";
///
/// 操作时间
///
private string colTime = "";
///
/// 生产产线名称
///
private string plineName = "";
///
/// 质量分组号(同申判单号、炉、批、组的前期下,当表面、公差、成分、理化、控伤、水压、加工七大项的组合值不一样时,组号必须分开)
///
private decimal? qualityGroup = null;
///
/// 材料去向代码
///
private string matGowhereCode = "";
///
/// 材料去向
///
private string matGowhereName = "";
///
/// 主键
///
private string colId = "";
///
/// 申请判定单号
///
[Description("申请判定单号")]
[Nullable(false)]
[DataLength(40)]
public string JugdeApplyCode
{
get { return jugdeApplyCode; }
set { jugdeApplyCode = value; }
}
///
/// 炉号
///
[Description("炉号")]
[Nullable(false)]
[DataLength(6)]
public string JudgeStoveNo
{
get { return judgeStoveNo; }
set { judgeStoveNo = value; }
}
///
/// 批号
///
[Description("批号")]
[Nullable(false)]
[DataLength(20)]
public string BatchNo
{
get { return batchNo; }
set { batchNo = value; }
}
///
/// 组号
///
[Description("组号")]
[Nullable(false)]
[DataLength(3)]
public string BatchGroudNo
{
get { return batchGroudNo; }
set { batchGroudNo = value; }
}
///
/// 工序代码(A\B\C\D.....)
///
[Description("工序代码(A\\B\\C\\D.....)")]
[Nullable(true)]
[DataLength(1)]
public string ProcessCode
{
get { return processCode; }
set { processCode = value; }
}
///
/// 产线代码
///
[Description("产线代码")]
[Nullable(true)]
[DataLength(20)]
public string PlineCode
{
get { return plineCode; }
set { plineCode = value; }
}
///
/// 支数
///
[Description("支数")]
[Nullable(true)]
[DataLength(5)]
public decimal? ActCount
{
get { return actCount; }
set { actCount = value; }
}
///
/// 实重
///
[Description("实重")]
[Nullable(true)]
[DataLength(12)]
public decimal? ActWeight
{
get { return actWeight; }
set { actWeight = value; }
}
///
/// 理论重量
///
[Description("理论重量")]
[Nullable(true)]
[DataLength(12)]
public decimal? ActTheoryWeight
{
get { return actTheoryWeight; }
set { actTheoryWeight = value; }
}
///
/// 原投料量
///
[Description("原投料量")]
[Nullable(true)]
[DataLength(9)]
public decimal? InputWeight
{
get { return inputWeight; }
set { inputWeight = value; }
}
///
/// 原投料支数(单倍坯)
///
[Description("原投料支数(单倍坯)")]
[Nullable(true)]
[DataLength(5)]
public decimal? InputCount
{
get { return inputCount; }
set { inputCount = value; }
}
///
/// 调整后投料量
///
[Description("调整后投料量")]
[Nullable(true)]
[DataLength(9)]
public decimal? InputWeight2
{
get { return inputWeight2; }
set { inputWeight2 = value; }
}
///
/// 调整后料支数(单倍坯)
///
[Description("调整后投料支数(单倍坯)")]
[Nullable(true)]
[DataLength(5)]
public decimal? InputCount2
{
get { return inputCount2; }
set { inputCount2 = value; }
}
///
/// 结转年月
///
[Description("结转年月")]
[Nullable(true)]
[DataLength(6)]
public string BalYearMonth
{
get { return balYearMonth; }
set { balYearMonth = value; }
}
///
/// 申请判定顺序号
///
[Description("申请判定顺序号")]
[Nullable(false)]
[DataLength(3)]
public string JugdeApplySequeno
{
get { return jugdeApplySequeno; }
set { jugdeApplySequeno = value; }
}
///
/// 操作人
///
[Description("操作人")]
[Nullable(true)]
[DataLength(20)]
public string ColName
{
get { return colName; }
set { colName = value; }
}
///
/// 操作时间
///
[Description("操作时间")]
[Nullable(true)]
public string ColTime
{
get { return colTime; }
set { colTime = value; }
}
///
/// 生产产线名称
///
[Description("生产产线名称")]
[Nullable(true)]
[DataLength(100)]
public string PlineName
{
get { return plineName; }
set { plineName = value; }
}
///
/// 质量分组号(同申判单号、炉、批、组的前期下,当表面、公差、成分、理化、控伤、水压、加工七大项的组合值不一样时,组号必须分开)
///
[Description("质量分组号(同申判单号、炉、批、组的前期下,当表面、公差、成分、理化、控伤、水压、加工七大项的组合值不一样时,组号必须分开)")]
[Nullable(false)]
[DataLength(22)]
public decimal? QualityGroup
{
get { return qualityGroup; }
set { qualityGroup = value; }
}
///
/// 材料去向代码
///
[Description("材料去向代码")]
[Nullable(false)]
[DataLength(20)]
public string MatGowhereCode
{
get { return matGowhereCode; }
set { matGowhereCode = value; }
}
///
/// 材料去向
///
[Description("材料去向")]
[Nullable(true)]
[DataLength(40)]
public string MatGowhereName
{
get { return matGowhereName; }
set { matGowhereName = value; }
}
///
/// 主键
///
[Description("主键")]
[Nullable(false)]
[DataLength(40)]
public string ColId
{
get { return colId; }
set { colId = value; }
}
}
}