using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using Core.Mes.Client.Comm.Attribute;
using Newtonsoft.Json;
namespace com.steering.mes.mcp.entity
{
///
/// 数据库表RTD_MEASURE_POSDATA所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/)
/// 作者:tgcx-test 时间:2018-10-15
///
public class RtdMeasurePosdataEntity
{
///
/// ID值
///
private string keyId = "";
///
/// 产线代码
///
private string plineCode = "";
///
/// 产线描述
///
private string plineName = "";
///
/// 判定炉号
///
private string judgeStoveNo = "";
///
/// 批号
///
private string batchNo = "";
///
/// 材料号(管号)
///
private string matNo = "";
///
/// 长度(实际)mm
///
private decimal? actLen = null;
///
/// 实重(实际)KG
///
private decimal? actWeight = null;
///
/// 合同主键
///
private string ordPk = "";
///
/// 合同行主键
///
private string ordLnPk = "";
///
/// 交货行主键PK
///
private string ordLnDlyPk = "";
///
/// 合同号
///
private string orderNo = "";
///
/// 合同行号
///
private string orderSeq = "";
///
/// 合同交货行号
///
private string orderSeqNo = "";
///
/// 加工线订单编号
///
private string proPlanId = "";
///
/// 工序排产序号
///
private string gxPlanNo = "";
///
/// 生产班次(1/2/3) ---早、中、晚
///
private string proBc = "";
///
/// 生产班组(1/2/3/4)--甲、乙、丙、丁
///
private string proBz = "";
///
/// 结算日期(年月)
///
private string balYearMonth = "";
///
/// 计量时间
///
private string msauerDate = "";
///
/// 标志位(00:正常值;10:作废)
///
private string flag = "";
///
/// 对应产销材料号
///
private string matNoCx = "";
///
/// ID值
///
[Description("ID值")]
[JsonProperty("keyId")]
public string KeyId
{
get { return keyId; }
set { keyId = value; }
}
///
/// 产线代码
///
[Description("产线代码")]
[JsonProperty("plineCode")]
public string PlineCode
{
get { return plineCode; }
set { plineCode = value; }
}
///
/// 产线描述
///
[Description("产线描述")]
[JsonProperty("plineName")]
public string PlineName
{
get { return plineName; }
set { plineName = value; }
}
///
/// 判定炉号
///
[Description("判定炉号")]
[JsonProperty("judgeStoveNo")]
public string JudgeStoveNo
{
get { return judgeStoveNo; }
set { judgeStoveNo = value; }
}
///
/// 批号
///
[Description("批号")]
[JsonProperty("batchNo")]
public string BatchNo
{
get { return batchNo; }
set { batchNo = value; }
}
///
/// 材料号(管号)
///
[Description("喷印管号")]
[JsonProperty("matNo")]
public string MatNo
{
get { return matNo; }
set { matNo = value; }
}
///
/// 长度(实际)mm
///
[Description("长度mm")]
[JsonProperty("actLen")]
public decimal? ActLen
{
get { return actLen; }
set { actLen = value; }
}
///
/// 实重(实际)KG
///
[Description("重量KG")]
[JsonProperty("actWeight")]
public decimal? ActWeight
{
get { return actWeight; }
set { actWeight = value; }
}
///
/// 合同主键
///
[Description("合同主键")]
[JsonProperty("ordPk")]
public string OrdPk
{
get { return ordPk; }
set { ordPk = value; }
}
///
/// 合同行主键
///
[Description("合同行主键")]
[JsonProperty("ordLnPk")]
public string OrdLnPk
{
get { return ordLnPk; }
set { ordLnPk = value; }
}
///
/// 交货行主键PK
///
[Description("交货行主键PK")]
[JsonProperty("ordLnDlyPk")]
public string OrdLnDlyPk
{
get { return ordLnDlyPk; }
set { ordLnDlyPk = value; }
}
///
/// 合同号
///
[Description("合同号")]
[JsonProperty("orderNo")]
public string OrderNo
{
get { return orderNo; }
set { orderNo = value; }
}
///
/// 合同行号
///
[Description("合同行号")]
[JsonProperty("orderSeq")]
public string OrderSeq
{
get { return orderSeq; }
set { orderSeq = value; }
}
///
/// 合同交货行号
///
[Description("合同交货行号")]
[JsonProperty("orderSeqNo")]
public string OrderSeqNo
{
get { return orderSeqNo; }
set { orderSeqNo = value; }
}
///
/// 加工线订单编号
///
[Description("加工线订单编号")]
[JsonProperty("proPlanId")]
public string ProPlanId
{
get { return proPlanId; }
set { proPlanId = value; }
}
///
/// 工序排产序号
///
[Description("工序排产序号")]
[JsonProperty("gxPlanNo")]
public string GxPlanNo
{
get { return gxPlanNo; }
set { gxPlanNo = value; }
}
///
/// 生产班次(1/2/3) ---早、中、晚
///
[Description("班次")]
[JsonProperty("proBc")]
public string ProBc
{
get { return proBc; }
set { proBc = value; }
}
///
/// 生产班组(1/2/3/4)--甲、乙、丙、丁
///
[Description("班组")]
[JsonProperty("proBz")]
public string ProBz
{
get { return proBz; }
set { proBz = value; }
}
///
/// 结算日期(年月)
///
[Description("结算日期(年月)")]
[JsonProperty("balYearMonth")]
public string BalYearMonth
{
get { return balYearMonth; }
set { balYearMonth = value; }
}
///
/// 计量时间
///
[Description("时间")]
[JsonProperty("msauerDate")]
public string MsauerDate
{
get { return msauerDate; }
set { msauerDate = value; }
}
///
/// 标志位(00:正常值;10:作废)
///
[Description("标志")]
[JsonProperty("flag")]
public string Flag
{
get { return flag; }
set { flag = value; }
}
///
/// 对应产销材料号
///
[Description("产销材料号")]
[JsonProperty("matNoCx")]
public string MatNoCx
{
get { return matNoCx; }
set { matNoCx = value; }
}
private string matInfo = "";
///
/// 对应产销材料号
///
[Description("喷标信息")]
[JsonProperty("matNoCx")]
public string MatInfo
{
get { return matInfo; }
set { matInfo = value; }
}
private string createUser = "";
///
///
///
[Description("创建人")]
[JsonProperty("matNoCx")]
public string CreateUser
{
get { return createUser; }
set { createUser = value; }
}
///
///
///
[Description("重量类型")]
[JsonProperty("matNoCx")]
public string WtType { get; set; }
///
///
///
[Description("原始实重")]
[JsonProperty("matNoCx")]
public decimal? OraActWeight { get; set; }
public string Rk { get; set; }
}
}