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.Mcp.VRP.Entity
{
class BaoJiaoResultMainEntity
{
///
/// 报检单号
///
private string inspectionNo = "";
///
/// 报检次数
///
private decimal? inspectionNum = null;
///
/// 炉计划ID
///
private string heatPlanNo = "";
///
/// 生产批号
///
private string zyBatchId = "";
///
/// 炉号
///
private string judgeStoveNo = "";
///
/// 批号
///
private string batchNo = "";
///
/// 抽检状态(0-待抽 1-待检 2-已检 3-免检)
///
private string inspectionFlag = "";
///
/// 报检结果
///
private string inspectionResult = "";
///
/// 品名代码
///
private string produccode = "";
///
/// 品名描述
///
private string producname = "";
///
/// 钢级(牌号)代码
///
private string steelcode = "";
///
/// 钢级(牌号)名称
///
private string steelname = "";
///
/// 钢种代码
///
private string gradecode = "";
///
/// 钢种名称
///
private string gradename = "";
///
/// 产品规格代码
///
private string specCode = "";
///
/// 产品规格描述
///
private string specName = "";
///
/// 扣型代码
///
private string modelCode = "";
///
/// 扣型描述
///
private string modelDesc = "";
///
/// 标准代码
///
private string stdCode = "";
///
/// 标准名称
///
private string stdName = "";
///
/// 标准类别代码
///
private string stdStyle = "";
///
/// 标准类别描述(PSL1....)
///
private string stdStyleDesc = "";
///
/// 工艺文件号
///
private string craftFileNo = "";
///
/// 客户名称
///
private string customerNm = "";
///
/// 报检支数
///
private decimal? actCount = null;
///
/// 报检重量
///
private decimal? actWeight = null;
///
/// 报检时间
///
private string createTime = "";
///
/// 上料时间
///
private string loadTime = "";
///
/// 检验时间
///
private string inspectionTime = "";
///
/// 检查员
///
private string inspectionName = "";
///
/// 送判状态(0-待送判 1-已送判 )
///
private string applyFlag = "";
///
/// 工序代码(A\B\C\D.....)
///
private string processCode = "";
///
/// 不合格原因
///
private string unqualifiedReasons = "";
///
/// 处置方式
///
private string disposalMethod = "";
///
/// 处理状态(0-待完成 1-已完成)
///
private string disposalFlag = "";
///
/// 生产产线代码
///
private string plineCode = "";
///
/// 生产产线名称
///
private string plineName = "";
///
/// 处置时间
///
private string disposalTime = "";
///
/// 处置员
///
private string disposalName = "";
///
/// ID
///
private string idcode = "";
///
/// 有效标志(1:有效,0:无效)
///
private string validflag = "";
///
/// 是否需要重检(0-不需要,1-需要,2-已重检)
///
private string recheck = "";
///
/// 合同号
///
private string orderNo = "";
///
/// 合同行号
///
private string orderSeq = "";
///
/// 废品支数
///
private decimal? scrapNum = null;
///
/// 报检年月日
///
private string procDate = "";
///
/// 序号
///
private decimal? seq = null;
///
/// 废品吨
///
private decimal? scrapWt = null;
///
/// 报检员
///
private string createName = "";
///
/// 工艺文件路径
///
private string craftPath = "";
///
/// 库区
///
private string storageName = "";
///
/// 料架位
///
private string locationName = "";
///
/// 报检单号
///
[Description("报检单号")]
[Nullable(false)]
[DataLength(20)]
public string InspectionNo
{
get { return inspectionNo; }
set { inspectionNo = value; }
}
///
/// 报检次数
///
[Description("报检次数")]
[Nullable(true)]
[DataLength(20)]
public decimal? InspectionNum
{
get { return inspectionNum; }
set { inspectionNum = value; }
}
///
/// 炉计划ID
///
[Description("炉计划ID")]
[Nullable(false)]
[DataLength(40)]
public string HeatPlanNo
{
get { return heatPlanNo; }
set { heatPlanNo = value; }
}
///
/// 生产批号
///
[Description("生产批号")]
[Nullable(true)]
[DataLength(20)]
public string ZyBatchId
{
get { return zyBatchId; }
set { zyBatchId = value; }
}
///
/// 炉号
///
[Description("炉号")]
[Nullable(true)]
[DataLength(9)]
public string JudgeStoveNo
{
get { return judgeStoveNo; }
set { judgeStoveNo = value; }
}
///
/// 批号
///
[Description("批号")]
[Nullable(false)]
[DataLength(20)]
public string BatchNo
{
get { return batchNo; }
set { batchNo = value; }
}
///
/// 抽检状态(0-待抽 1-待检 2-已检 3-免检)
///
[Description("抽检状态")]
[Nullable(true)]
[DataLength(1)]
public string InspectionFlag
{
get { return inspectionFlag; }
set { inspectionFlag = value; }
}
///
/// 报检结果
///
[Description("报检结果")]
[Nullable(false)]
[DataLength(20)]
public string InspectionResult
{
get { return inspectionResult; }
set { inspectionResult = value; }
}
///
/// 品名代码
///
[Description("品名代码")]
[Nullable(true)]
[DataLength(20)]
public string Produccode
{
get { return produccode; }
set { produccode = value; }
}
///
/// 品名描述
///
[Description("品名描述")]
[Nullable(true)]
[DataLength(100)]
public string Producname
{
get { return producname; }
set { producname = value; }
}
///
/// 钢级(牌号)代码
///
[Description("钢级(牌号)代码")]
[Nullable(true)]
[DataLength(10)]
public string Steelcode
{
get { return steelcode; }
set { steelcode = value; }
}
///
/// 钢级(牌号)名称
///
[Description("钢级(牌号)名称")]
[Nullable(true)]
[DataLength(100)]
public string Steelname
{
get { return steelname; }
set { steelname = 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 SpecCode
{
get { return specCode; }
set { specCode = value; }
}
///
/// 产品规格描述
///
[Description("产品规格描述")]
[Nullable(true)]
[DataLength(100)]
public string SpecName
{
get { return specName; }
set { specName = value; }
}
///
/// 扣型代码
///
[Description("扣型代码")]
[Nullable(true)]
[DataLength(20)]
public string ModelCode
{
get { return modelCode; }
set { modelCode = value; }
}
///
/// 扣型描述
///
[Description("扣型描述")]
[Nullable(true)]
[DataLength(100)]
public string ModelDesc
{
get { return modelDesc; }
set { modelDesc = value; }
}
///
/// 标准代码
///
[Description("标准代码")]
[Nullable(true)]
[DataLength(20)]
public string StdCode
{
get { return stdCode; }
set { stdCode = value; }
}
///
/// 标准名称
///
[Description("标准名称")]
[Nullable(true)]
[DataLength(256)]
public string StdName
{
get { return stdName; }
set { stdName = value; }
}
///
/// 标准类别代码
///
[Description("标准类别代码")]
[Nullable(true)]
[DataLength(20)]
public string StdStyle
{
get { return stdStyle; }
set { stdStyle = value; }
}
///
/// 标准类别描述(PSL1....)
///
[Description("标准类别描述")]
[Nullable(true)]
[DataLength(50)]
public string StdStyleDesc
{
get { return stdStyleDesc; }
set { stdStyleDesc = value; }
}
///
/// 工艺文件号
///
[Description("工艺文件号")]
[Nullable(true)]
[DataLength(100)]
public string CraftFileNo
{
get { return craftFileNo; }
set { craftFileNo = value; }
}
///
/// 客户名称
///
[Description("客户名称")]
[Nullable(true)]
[DataLength(128)]
public string CustomerNm
{
get { return customerNm; }
set { customerNm = 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)]
public string CreateTime
{
get { return createTime; }
set { createTime = value; }
}
///
/// 上料时间
///
[Description("上料时间")]
[Nullable(true)]
public string LoadTime
{
get { return loadTime; }
set { loadTime = value; }
}
///
/// 检验时间
///
[Description("检验时间")]
[Nullable(true)]
public string InspectionTime
{
get { return inspectionTime; }
set { inspectionTime = value; }
}
///
/// 检查员
///
[Description("检查员")]
[Nullable(true)]
public string InspectionName
{
get { return inspectionName; }
set { inspectionName = value; }
}
///
/// 送判状态(0-待送判 1-已送判 )
///
[Description("送判状态")]
[Nullable(true)]
[DataLength(1)]
public string ApplyFlag
{
get { return applyFlag; }
set { applyFlag = value; }
}
///
/// 工序代码(A\B\C\D.....)
///
[Description("工序代码")]
[Nullable(true)]
[DataLength(1)]
public string ProcessCode
{
get { return processCode; }
set { processCode = value; }
}
///
/// 不合格原因
///
[Description("不合格原因")]
[Nullable(true)]
[DataLength(200)]
public string UnqualifiedReasons
{
get { return unqualifiedReasons; }
set { unqualifiedReasons = value; }
}
///
/// 处置方式
///
[Description("处置方式")]
[Nullable(true)]
[DataLength(200)]
public string DisposalMethod
{
get { return disposalMethod; }
set { disposalMethod = value; }
}
///
/// 处理状态(0-待完成 1-已完成)
///
[Description("处理状态")]
[Nullable(true)]
[DataLength(1)]
public string DisposalFlag
{
get { return disposalFlag; }
set { disposalFlag = value; }
}
///
/// 生产产线代码
///
[Description("生产产线代码")]
[Nullable(true)]
[DataLength(20)]
public string PlineCode
{
get { return plineCode; }
set { plineCode = value; }
}
///
/// 生产产线名称
///
[Description("生产产线名称")]
[Nullable(true)]
[DataLength(100)]
public string PlineName
{
get { return plineName; }
set { plineName = value; }
}
///
/// 处置时间
///
[Description("处置时间")]
[Nullable(true)]
public string DisposalTime
{
get { return disposalTime; }
set { disposalTime = value; }
}
///
/// 处置员
///
[Description("处置员")]
[Nullable(true)]
[DataLength(20)]
public string DisposalName
{
get { return disposalName; }
set { disposalName = value; }
}
///
/// ID
///
[Description("ID")]
[Nullable(false)]
[DataLength(50)]
public string Idcode
{
get { return idcode; }
set { idcode = value; }
}
///
/// 有效标志(1:有效,0:无效)
///
[Description("有效标志")]
[Nullable(false)]
[DataLength(1)]
public string Validflag
{
get { return validflag; }
set { validflag = value; }
}
///
/// 是否需要重检(0-不需要,1-需要,2-已重检)
///
[Description("是否需要重检")]
[Nullable(true)]
[DataLength(1)]
public string Recheck
{
get { return recheck; }
set { recheck = value; }
}
///
/// 合同号
///
[Description("合同号")]
[Nullable(true)]
[DataLength(20)]
public string OrderNo
{
get { return orderNo; }
set { orderNo = value; }
}
///
/// 合同行号
///
[Description("合同行号")]
[Nullable(true)]
[DataLength(3)]
public string OrderSeq
{
get { return orderSeq; }
set { orderSeq = value; }
}
///
/// 废品支数
///
[Description("废品支数")]
[Nullable(true)]
[DataLength(6)]
public decimal? ScrapNum
{
get { return scrapNum; }
set { scrapNum = value; }
}
///
/// 报检年月日
///
[Description("报检年月日")]
[Nullable(true)]
[DataLength(8)]
public string ProcDate
{
get { return procDate; }
set { procDate = value; }
}
///
/// 序号
///
[Description("序号")]
[Nullable(true)]
[DataLength(6)]
public decimal? Seq
{
get { return seq; }
set { seq = value; }
}
///
/// 废品吨
///
[Description("废品吨")]
[Nullable(true)]
[DataLength(10)]
public decimal? ScrapWt
{
get { return scrapWt; }
set { scrapWt = value; }
}
///
/// 报检员
///
[Description("报检员")]
[Nullable(true)]
[DataLength(20)]
public string CreateName
{
get { return createName; }
set { createName = value; }
}
///
/// 工艺文件路径
///
[Description("工艺文件路径")]
[Nullable(true)]
[DataLength(200)]
public string CraftPath
{
get { return craftPath; }
set { craftPath = value; }
}
///
/// 库区
///
[Description("库区")]
[Nullable(false)]
[DataLength(20)]
public string StorageName
{
get { return storageName; }
set { storageName = value; }
}
///
/// 料架位
///
[Description("料架位")]
[Nullable(false)]
[DataLength(20)]
public string LocationName
{
get { return locationName; }
set { locationName = value; }
}
}
}