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.LgResMgt.Mcms.entity
{
///
/// 数据库表CMM_BLANK_PREDICTION所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:朱少波 时间:2020-12-22
///
public class CmmBlankPredictionEntity
{
///
/// 流水号
///
private string predictionId = "";
///
/// 生产合同号
///
private string proOrderNo = "";
///
/// 钢种代码
///
private string gradecode = "";
///
/// 钢种名称
///
private string gradename = "";
///
/// 判定炉号
///
private string judgeStoveNo = "";
///
/// 外径(实际)
///
private decimal? actDimater = null;
///
/// 长度
///
private string actLen = "";
///
/// 单倍长度
///
private string singleLen = "";
///
/// 支数
///
private decimal? planNum = null;
///
/// 重量
///
private decimal? planWt = null;
///
/// 已过磅支数
///
private decimal? poundNum = null;
///
/// 已过磅重量
///
private decimal? poundWt = null;
///
/// 创建人
///
private string createName = "";
///
/// 创建时间
///
private string createTime = "";
///
/// 修改人
///
private string updateName = "";
///
/// 修改时间
///
private string updateTime = "";
///
/// 删除人
///
private string deleteName = "";
///
/// 入库备注
///
private string pipememo = "";
///
/// 删除时间
///
private string deleteTime = "";
///
/// 流水号
///
[Description("预报ID")]
[Nullable(false)]
[DataLength(40)]
public string PredictionId
{
get { return predictionId; }
set { predictionId = value; }
}
///
/// 生产合同号
///
[Description("合同号")]
[Nullable(true)]
[DataLength(50)]
public string ProOrderNo
{
get { return proOrderNo; }
set { proOrderNo = value; }
}
///
/// 钢种代码
///
[Description("钢种代码")]
[Nullable(true)]
[DataLength(10)]
public string Gradecode
{
get { return gradecode; }
set { gradecode = value; }
}
///
/// 钢种名称
///
[Description("钢种")]
[Nullable(true)]
[DataLength(100)]
public string Gradename
{
get { return gradename; }
set { gradename = value; }
}
///
/// 判定炉号
///
[Description("炉号")]
[Nullable(true)]
[DataLength(20)]
public string JudgeStoveNo
{
get { return judgeStoveNo; }
set { judgeStoveNo = value; }
}
///
/// 外径(实际)
///
[Description("外径")]
[Nullable(true)]
[DataLength(8)]
public decimal? ActDimater
{
get { return actDimater; }
set { actDimater = value; }
}
///
/// 长度
///
[Description("长度")]
[Nullable(true)]
[DataLength(50)]
public string ActLen
{
get { return actLen; }
set { actLen = value; }
}
///
/// 单倍长度
///
[Description("单倍长度")]
[Nullable(true)]
[DataLength(50)]
public string SingleLen
{
get { return singleLen; }
set { singleLen = value; }
}
///
/// 支数
///
[Description("支数")]
[Nullable(true)]
[DataLength(22)]
public decimal? PlanNum
{
get { return planNum; }
set { planNum = value; }
}
///
/// 重量
///
[Description("重量")]
[Nullable(true)]
[DataLength(8)]
public decimal? PlanWt
{
get { return planWt; }
set { planWt = value; }
}
///
/// 已过磅支数
///
[Description("已过磅支数")]
[Nullable(true)]
[DataLength(22)]
public decimal? PoundNum
{
get { return poundNum; }
set { poundNum = value; }
}
///
/// 已过磅重量
///
[Description("过磅重量")]
[Nullable(true)]
[DataLength(8)]
public decimal? PoundWt
{
get { return poundWt; }
set { poundWt = value; }
}
///
/// 创建人
///
[Description("创建人")]
[Nullable(true)]
[DataLength(20)]
public string CreateName
{
get { return createName; }
set { createName = value; }
}
///
/// 创建时间
///
[Description("创建时间")]
[Nullable(true)]
public string CreateTime
{
get { return createTime; }
set { createTime = value; }
}
///
/// 修改人
///
[Description("修改人")]
[Nullable(true)]
[DataLength(20)]
public string UpdateName
{
get { return updateName; }
set { updateName = value; }
}
///
/// 修改时间
///
[Description("修改时间")]
[Nullable(true)]
public string UpdateTime
{
get { return updateTime; }
set { updateTime = value; }
}
///
/// 删除人
///
[Description("删除人")]
[Nullable(true)]
[DataLength(20)]
public string DeleteName
{
get { return deleteName; }
set { deleteName = value; }
}
///
/// 删除时间
///
[Description("删除时间")]
[Nullable(true)]
public string DeleteTime
{
get { return deleteTime; }
set { deleteTime = value; }
}
///
/// 有效标志(1:有效,0:无效)
///
private string validflag = "";
///
/// 有效标志(1:有效,0:无效)
///
[Description("状态")]
[Nullable(false)]
[DataLength(1)]
public string Validflag
{
get { return validflag; }
set { validflag = value; }
}
///
/// 发货单位
///
private string shippersName = "";
///
/// 发货单位
///
[Description("来料厂家")]
[Nullable(true)]
[DataLength(120)]
public string ShippersName
{
get { return shippersName; }
set { shippersName = value; }
}
///
/// 备注
///
[Description("备注")]
[Nullable(true)]
[DataLength(120)]
public string Memo { get; set; }
private string memo = "";
///
/// 需求类型(0 非双经销 1双经销)
///
private string typeFlag = "";
///
/// 合同头PK值(GUID)
///
private string ordNoPk = "";
///
/// 合同行PK值=合同头PK值+3位ORDER_SQE
///
private string ordSqePk = "";
///
/// 合同号
///
private string orderNo = "";
///
/// 合同行号
///
private string orderSqe = "";
///
/// 需求类型(0 非双经销 1双经销)
///
[Description("需求类型")]
[Nullable(true)]
[DataLength(1)]
public string TypeFlag
{
get { return typeFlag; }
set { typeFlag = value; }
}
///
/// 合同头PK值(GUID)
///
[Description("合同头PK值(GUID)")]
[Nullable(true)]
[DataLength(40)]
public string OrdNoPk
{
get { return ordNoPk; }
set { ordNoPk = value; }
}
///
/// 合同行PK值=合同头PK值+3位ORDER_SQE
///
[Description("合同行PK值=合同头PK值+3位ORDER_SQE")]
[Nullable(true)]
[DataLength(40)]
public string OrdSqePk
{
get { return ordSqePk; }
set { ordSqePk = value; }
}
///
/// 合同号
///
[Description("合同号")]
[Nullable(true)]
[DataLength(40)]
public string OrderNo
{
get { return orderNo; }
set { orderNo = value; }
}
///
/// 合同行号
///
[Description("合同行号")]
[Nullable(true)]
[DataLength(3)]
public string OrderSqe
{
get { return orderSqe; }
set { orderSqe = value; }
}
[Description("结炉状态")]
[Nullable(true)]
[DataLength(3)]
public string CheckFlag { get; set; }
[Description("检查支数")]
[Nullable(true)]
[DataLength(3)]
public decimal? CheckNum { get; set; }
///
/// 报告
///
[Description("报告")]
[Nullable(true)]
[DataLength(40)]
public string ReportPath { get; set; }
[Description("标准")]
[Nullable(true)]
[DataLength(40)]
public string Standard { get; set; }
[Description("初次过磅时间")]
[Nullable(true)]
[DataLength(40)]
public string PoundDate { get; set; }
[Description("入库支")]
[Nullable(true)]
[DataLength(40)]
public string InstoreNum { get; set; }
[Description("入库吨")]
[Nullable(true)]
[DataLength(40)]
public string InstoreWt { get; set; }
[Description("入库重量类型")]
[Nullable(true)]
[DataLength(40)]
public string InstoreType { get; set; }
[Description("未到支")]
public string UnPoundNum { get; set; }
[Description("未到吨")]
public string UnPoundWt { get; set; }
[Description("未入库支")]
public string UnInstoreNum { get; set; }
[Description("未入库吨")]
public string UnInstoreWt { get; set; }
[Description("合同有效")]
[Nullable(false)]
[DataLength(1)]
public string OrderFlag
{
get;
set;
}
[Description("入库备注")]
[Nullable(true)]
[DataLength(200)]
public string Pipememo
{
get
{
return pipememo;
}
set
{
pipememo = value;
}
}
}
}