|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
using System.ComponentModel;
|
|
|
using System.Linq;
|
|
|
using System.Text;
|
|
|
using Newtonsoft.Json;
|
|
|
using SOA.Persistent;
|
|
|
|
|
|
namespace ibk.IPD.Entity.IpdPs
|
|
|
{
|
|
|
[Serializable, Table("GP_PLATE")]
|
|
|
[JsonObject]
|
|
|
public class GP_PLATE
|
|
|
{
|
|
|
//钢板号
|
|
|
[Persistent("PLATE_NO"), DisplayName("钢板号")]
|
|
|
public string PLATE_NO { get; set; }
|
|
|
|
|
|
|
|
|
//发生代码
|
|
|
[Persistent("OCCR_CD"), DisplayName("发生代码")]
|
|
|
public string OCCR_CD { get; set; }
|
|
|
|
|
|
//厚度公差最小值
|
|
|
[Persistent("THK_TOL_MIN"), DisplayName("厚度公差最小值")]
|
|
|
public string THK_TOL_MIN { get; set; }
|
|
|
|
|
|
//厚度公差最大值
|
|
|
[Persistent("THK_TOL_MAX"), DisplayName("厚度公差最大值")]
|
|
|
public string THK_TOL_MAX { get; set; }
|
|
|
|
|
|
//工厂代码
|
|
|
[Persistent("PLT"), DisplayName("工厂代码")]
|
|
|
public string PLT { get; set; }
|
|
|
|
|
|
|
|
|
//作业线代码
|
|
|
[Persistent("PRC_LINE"), DisplayName("作业线代码")]
|
|
|
public string PRC_LINE { get; set; }
|
|
|
|
|
|
|
|
|
//状态代码
|
|
|
[Persistent("REC_STS"), DisplayName("状态代码")]
|
|
|
public string REC_STS { get; set; }
|
|
|
|
|
|
|
|
|
//进程代码
|
|
|
[Persistent("PROC_CD"), DisplayName("进程代码")]
|
|
|
public string PROC_CD { get; set; }
|
|
|
|
|
|
|
|
|
//前进程代码
|
|
|
[Persistent("BEF_PROC_CD"), DisplayName("前进程代码")]
|
|
|
public string BEF_PROC_CD { get; set; }
|
|
|
|
|
|
|
|
|
//产品代码
|
|
|
[Persistent("PROD_CD"), DisplayName("产品代码")]
|
|
|
public string PROD_CD { get; set; }
|
|
|
|
|
|
|
|
|
//钢种
|
|
|
[Persistent("STLGRD"), DisplayName("钢种")]
|
|
|
public string STLGRD { get; set; }
|
|
|
|
|
|
|
|
|
//厚度
|
|
|
[Persistent("THK"), DisplayName("厚度")]
|
|
|
public string THK { get; set; }
|
|
|
|
|
|
|
|
|
//宽度
|
|
|
[Persistent("WID"), DisplayName("宽度")]
|
|
|
public string WID { get; set; }
|
|
|
|
|
|
|
|
|
//长度
|
|
|
[Persistent("LEN"), DisplayName("长度")]
|
|
|
public string LEN { get; set; }
|
|
|
|
|
|
|
|
|
//重量
|
|
|
[Persistent("WGT"), DisplayName("重量")]
|
|
|
public string WGT { get; set; }
|
|
|
|
|
|
|
|
|
//计算重量
|
|
|
[Persistent("CAL_WGT"), DisplayName("计算重量")]
|
|
|
public string CAL_WGT { get; set; }
|
|
|
|
|
|
|
|
|
//厚度组
|
|
|
[Persistent("THK_GRP"), DisplayName("厚度组")]
|
|
|
public string THK_GRP { get; set; }
|
|
|
|
|
|
|
|
|
//宽度组
|
|
|
[Persistent("WID_GRP"), DisplayName("宽度组")]
|
|
|
public string WID_GRP { get; set; }
|
|
|
|
|
|
|
|
|
//过量生产代码
|
|
|
[Persistent("OVER_FL"), DisplayName("过量生产代码")]
|
|
|
public string OVER_FL { get; set; }
|
|
|
|
|
|
|
|
|
//订单材/余材代码
|
|
|
[Persistent("ORD_FL"), DisplayName("订单材/余材代码")]
|
|
|
public string ORD_FL { get; set; }
|
|
|
|
|
|
|
|
|
//余材原因代码
|
|
|
[Persistent("WOO_RSN"), DisplayName("余材原因代码")]
|
|
|
public string WOO_RSN { get; set; }
|
|
|
|
|
|
|
|
|
//订单号
|
|
|
[Persistent("ORD_NO"), DisplayName("订单号")]
|
|
|
public string ORD_NO { get; set; }
|
|
|
|
|
|
|
|
|
//订单序列号
|
|
|
[Persistent("ORD_ITEM"), DisplayName("订单序列号")]
|
|
|
public string ORD_ITEM { get; set; }
|
|
|
|
|
|
|
|
|
//原始订单号
|
|
|
[Persistent("ORG_ORD_NO"), DisplayName("原始订单号")]
|
|
|
public string ORG_ORD_NO { get; set; }
|
|
|
|
|
|
|
|
|
//原始订单序列号
|
|
|
[Persistent("ORG_ORD_ITEM"), DisplayName("原始订单序列号")]
|
|
|
public string ORG_ORD_ITEM { get; set; }
|
|
|
|
|
|
|
|
|
//订单用途
|
|
|
[Persistent("ENDUSE_CD"), DisplayName("订单用途")]
|
|
|
public string ENDUSE_CD { get; set; }
|
|
|
|
|
|
|
|
|
//交货日期
|
|
|
[Persistent("DEL_TO_DATE"), DisplayName("交货日期")]
|
|
|
public string DEL_TO_DATE { get; set; }
|
|
|
|
|
|
|
|
|
//生产日期
|
|
|
[Persistent("PROD_DATE"), DisplayName("生产日期")]
|
|
|
public string PROD_DATE { get; set; }
|
|
|
|
|
|
|
|
|
//生产时间
|
|
|
[Persistent("PROD_TIME"), DisplayName("生产时间")]
|
|
|
public string PROD_TIME { get; set; }
|
|
|
|
|
|
|
|
|
//班次
|
|
|
[Persistent("SHIFT"), DisplayName("班次")]
|
|
|
public string SHIFT { get; set; }
|
|
|
|
|
|
|
|
|
//班别
|
|
|
[Persistent("GROUP_CD"), DisplayName("班别")]
|
|
|
public string GROUP_CD { get; set; }
|
|
|
|
|
|
|
|
|
//垛位号
|
|
|
[Persistent("LOC"), DisplayName("垛位号")]
|
|
|
public string LOC { get; set; }
|
|
|
|
|
|
|
|
|
//堆垛时间
|
|
|
[Persistent("BED_PILE_DATE"), DisplayName("堆垛时间")]
|
|
|
public string BED_PILE_DATE { get; set; }
|
|
|
|
|
|
|
|
|
//取样代码
|
|
|
[Persistent("SMP_FL"), DisplayName("取样代码")]
|
|
|
public string SMP_FL { get; set; }
|
|
|
|
|
|
|
|
|
//取样位置
|
|
|
[Persistent("SMP_LOC"), DisplayName("取样位置")]
|
|
|
public string SMP_LOC { get; set; }
|
|
|
|
|
|
|
|
|
//取样长度
|
|
|
[Persistent("SMP_LEN"), DisplayName("取样长度")]
|
|
|
public string SMP_LEN { get; set; }
|
|
|
|
|
|
|
|
|
//取样号
|
|
|
[Persistent("SMP_NO"), DisplayName("取样号")]
|
|
|
public string SMP_NO { get; set; }
|
|
|
|
|
|
|
|
|
//检查人员
|
|
|
[Persistent("INSP_EMP"), DisplayName("检查人员")]
|
|
|
public string INSP_EMP { get; set; }
|
|
|
|
|
|
|
|
|
//综合判定日期
|
|
|
[Persistent("DSC_DATE"), DisplayName("综合判定日期")]
|
|
|
public string DSC_DATE { get; set; }
|
|
|
|
|
|
|
|
|
//综合判定时间
|
|
|
[Persistent("DSC_TIME"), DisplayName("综合判定时间")]
|
|
|
public string DSC_TIME { get; set; }
|
|
|
|
|
|
|
|
|
//产品等级
|
|
|
[Persistent("PROD_GRD"), DisplayName("产品等级")]
|
|
|
public string PROD_GRD { get; set; }
|
|
|
|
|
|
|
|
|
//外观等级
|
|
|
[Persistent("SURF_GRD"), DisplayName("外观等级")]
|
|
|
public string SURF_GRD { get; set; }
|
|
|
|
|
|
|
|
|
//材质等级
|
|
|
[Persistent("QUALITY_GRD"), DisplayName("材质等级")]
|
|
|
public string QUALITY_GRD { get; set; }
|
|
|
|
|
|
|
|
|
//材质更新等级
|
|
|
[Persistent("QUALITY_UPD_GRD"), DisplayName("材质更新等级")]
|
|
|
public string QUALITY_UPD_GRD { get; set; }
|
|
|
|
|
|
|
|
|
//标准号
|
|
|
[Persistent("APLY_STDSPEC"), DisplayName("标准号")]
|
|
|
public string APLY_STDSPEC { get; set; }
|
|
|
|
|
|
|
|
|
//钢板用途
|
|
|
[Persistent("APLY_ENDUSE_CD"), DisplayName("钢板用途")]
|
|
|
public string APLY_ENDUSE_CD { get; set; }
|
|
|
|
|
|
|
|
|
//入库状态
|
|
|
[Persistent("IN_PLT_CD"), DisplayName("入库状态")]
|
|
|
public string IN_PLT_CD { get; set; }
|
|
|
|
|
|
|
|
|
//入库工厂
|
|
|
[Persistent("IN_PLT"), DisplayName("入库工厂")]
|
|
|
public string IN_PLT { get; set; }
|
|
|
|
|
|
|
|
|
//入库日期
|
|
|
[Persistent("IN_PLT_DATE"), DisplayName("入库日期")]
|
|
|
public string IN_PLT_DATE { get; set; }
|
|
|
|
|
|
|
|
|
//入库时间
|
|
|
[Persistent("IN_PLT_TIME"), DisplayName("入库时间")]
|
|
|
public string IN_PLT_TIME { get; set; }
|
|
|
|
|
|
|
|
|
//入库车辆号 20131209 实物取样标记
|
|
|
[Persistent("IN_CAR_NO"), DisplayName("入库车辆号 20131209 实物取样标记")]
|
|
|
public string IN_CAR_NO { get; set; }
|
|
|
|
|
|
|
|
|
//入库提货单号(20131010改为板坯号)
|
|
|
[Persistent("SLAB_NO"), DisplayName("入库提货单号(20131010改为板坯号)")]
|
|
|
public string SLAB_NO { get; set; }
|
|
|
|
|
|
|
|
|
//供货商代码
|
|
|
[Persistent("IN_PLT_CO"), DisplayName("供货商代码")]
|
|
|
public string IN_PLT_CO { get; set; }
|
|
|
|
|
|
|
|
|
//出库状态
|
|
|
[Persistent("OUT_PLT_CD"), DisplayName("出库状态")]
|
|
|
public string OUT_PLT_CD { get; set; }
|
|
|
|
|
|
|
|
|
//出库工厂
|
|
|
[Persistent("OUT_PLT"), DisplayName("出库工厂")]
|
|
|
public string OUT_PLT { get; set; }
|
|
|
|
|
|
|
|
|
//出库日期
|
|
|
[Persistent("OUT_PLT_DATE"), DisplayName("出库日期")]
|
|
|
public string OUT_PLT_DATE { get; set; }
|
|
|
|
|
|
|
|
|
//出库时间
|
|
|
[Persistent("OUT_PLT_TIME"), DisplayName("出库时间")]
|
|
|
public string OUT_PLT_TIME { get; set; }
|
|
|
|
|
|
|
|
|
//出库车辆号
|
|
|
[Persistent("OUT_CAR_NO"), DisplayName("出库车辆号")]
|
|
|
public string OUT_CAR_NO { get; set; }
|
|
|
|
|
|
|
|
|
//轧制号
|
|
|
[Persistent("OUT_SHEET_NO"), DisplayName("轧制号")]
|
|
|
public string OUT_SHEET_NO { get; set; }
|
|
|
|
|
|
|
|
|
//产品入库日期
|
|
|
[Persistent("HOUSING_DATE"), DisplayName("产品入库日期")]
|
|
|
public string HOUSING_DATE { get; set; }
|
|
|
|
|
|
|
|
|
//产品入库时间
|
|
|
[Persistent("HOUSING_TIME"), DisplayName("产品入库时间")]
|
|
|
public string HOUSING_TIME { get; set; }
|
|
|
|
|
|
|
|
|
//发货指示号
|
|
|
[Persistent("SHP_IST_NO"), DisplayName("发货指示号")]
|
|
|
public string SHP_IST_NO { get; set; }
|
|
|
|
|
|
|
|
|
//发货指示日期
|
|
|
[Persistent("SHP_IST_DATE"), DisplayName("发货指示日期")]
|
|
|
public string SHP_IST_DATE { get; set; }
|
|
|
|
|
|
|
|
|
//发货指示时间
|
|
|
[Persistent("SHP_IST_TIME"), DisplayName("发货指示时间")]
|
|
|
public string SHP_IST_TIME { get; set; }
|
|
|
|
|
|
|
|
|
//发货日期
|
|
|
[Persistent("SHP_DATE"), DisplayName("发货日期")]
|
|
|
public string SHP_DATE { get; set; }
|
|
|
|
|
|
|
|
|
//发货时间
|
|
|
[Persistent("SHP_TIME"), DisplayName("发货时间")]
|
|
|
public string SHP_TIME { get; set; }
|
|
|
|
|
|
|
|
|
//提货单号
|
|
|
[Persistent("TRNS_NO"), DisplayName("提货单号")]
|
|
|
public string TRNS_NO { get; set; }
|
|
|
|
|
|
|
|
|
//车辆号
|
|
|
[Persistent("CAR_NO"), DisplayName("车辆号")]
|
|
|
public string CAR_NO { get; set; }
|
|
|
|
|
|
|
|
|
//运输公司-〉分段号
|
|
|
[Persistent("TRNS_CMPY_CD"), DisplayName("运输公司-〉分段号")]
|
|
|
public string TRNS_CMPY_CD { get; set; }
|
|
|
|
|
|
|
|
|
//发货人员
|
|
|
[Persistent("SHP_EMP"), DisplayName("发货人员")]
|
|
|
public string SHP_EMP { get; set; }
|
|
|
|
|
|
|
|
|
//专线名称 20131026改为热喷号
|
|
|
[Persistent("TRAIN_LINE_NAME"), DisplayName("专线名称 20131026改为热喷号")]
|
|
|
public string TRAIN_LINE_NAME { get; set; }
|
|
|
|
|
|
|
|
|
//详细目的地
|
|
|
[Persistent("DEST_DETAIL"), DisplayName("详细目的地")]
|
|
|
public string DEST_DETAIL { get; set; }
|
|
|
|
|
|
|
|
|
//质量证明书发放代码
|
|
|
[Persistent("CERT_RPT_FL"), DisplayName("质量证明书发放代码")]
|
|
|
public string CERT_RPT_FL { get; set; }
|
|
|
|
|
|
|
|
|
//质量证明书发放日期
|
|
|
[Persistent("CERT_RPT_DATE"), DisplayName("质量证明书发放日期")]
|
|
|
public string CERT_RPT_DATE { get; set; }
|
|
|
|
|
|
|
|
|
//质量证明书发放时间
|
|
|
[Persistent("CERT_RPT_TIME"), DisplayName("质量证明书发放时间")]
|
|
|
public string CERT_RPT_TIME { get; set; }
|
|
|
|
|
|
|
|
|
//取消发货指示日期
|
|
|
[Persistent("SHP_IST_CAN_DATE"), DisplayName("取消发货指示日期")]
|
|
|
public string SHP_IST_CAN_DATE { get; set; }
|
|
|
|
|
|
|
|
|
//取消发货指示时间
|
|
|
[Persistent("SHP_IST_CAN_TIME"), DisplayName("取消发货指示时间")]
|
|
|
public string SHP_IST_CAN_TIME { get; set; }
|
|
|
|
|
|
|
|
|
//取消发货指示代码
|
|
|
[Persistent("SHP_IST_CAN_FL"), DisplayName("取消发货指示代码")]
|
|
|
public string SHP_IST_CAN_FL { get; set; }
|
|
|
|
|
|
|
|
|
//录入时间
|
|
|
[Persistent("INS_DATE"), DisplayName("录入时间")]
|
|
|
public string INS_DATE { get; set; }
|
|
|
|
|
|
|
|
|
//录入人员
|
|
|
[Persistent("INS_EMP_CD"), DisplayName("录入人员")]
|
|
|
public string INS_EMP_CD { get; set; }
|
|
|
|
|
|
|
|
|
//录入程序
|
|
|
[Persistent("INS_PGMID"), DisplayName("录入程序")]
|
|
|
public string INS_PGMID { get; set; }
|
|
|
|
|
|
|
|
|
//更新日期
|
|
|
[Persistent("UPD_DATE"), DisplayName("更新日期")]
|
|
|
public string UPD_DATE { get; set; }
|
|
|
|
|
|
|
|
|
//更新人员
|
|
|
[Persistent("UPD_EMP_CD"), DisplayName("更新人员")]
|
|
|
public string UPD_EMP_CD { get; set; }
|
|
|
|
|
|
|
|
|
//更新程序
|
|
|
[Persistent("UPD_PGM"), DisplayName("更新程序")]
|
|
|
public string UPD_PGM { get; set; }
|
|
|
|
|
|
|
|
|
//计划钢板代码
|
|
|
[Persistent("PLATE_SEC"), DisplayName("计划钢板代码")]
|
|
|
public string PLATE_SEC { get; set; }
|
|
|
|
|
|
|
|
|
//控轧代码
|
|
|
[Persistent("CR_CD"), DisplayName("控轧代码")]
|
|
|
public string CR_CD { get; set; }
|
|
|
|
|
|
|
|
|
//堆垛号
|
|
|
[Persistent("PILE_NO"), DisplayName("堆垛号")]
|
|
|
public string PILE_NO { get; set; }
|
|
|
|
|
|
|
|
|
//工序代码
|
|
|
[Persistent("PRC"), DisplayName("工序代码")]
|
|
|
public string PRC { get; set; }
|
|
|
|
|
|
|
|
|
//修磨代码
|
|
|
[Persistent("SF_ORNOT"), DisplayName("修磨代码")]
|
|
|
public string SF_ORNOT { get; set; }
|
|
|
|
|
|
|
|
|
//超声波探伤代码
|
|
|
[Persistent("UST_FL"), DisplayName("超声波探伤代码")]
|
|
|
public string UST_FL { get; set; }
|
|
|
|
|
|
|
|
|
//切边代码
|
|
|
[Persistent("TRIM_FL"), DisplayName("切边代码")]
|
|
|
public string TRIM_FL { get; set; }
|
|
|
|
|
|
|
|
|
//结束标志
|
|
|
[Persistent("END_RES"), DisplayName("结束标志")]
|
|
|
public string END_RES { get; set; }
|
|
|
|
|
|
|
|
|
//原始钢板号
|
|
|
[Persistent("ORG_PLATE"), DisplayName("原始钢板号")]
|
|
|
public string ORG_PLATE { get; set; }
|
|
|
|
|
|
|
|
|
//订单厚度
|
|
|
[Persistent("ORD_THK"), DisplayName("订单厚度")]
|
|
|
public string ORD_THK { get; set; }
|
|
|
|
|
|
|
|
|
//订单宽度
|
|
|
[Persistent("ORD_WID"), DisplayName("订单宽度")]
|
|
|
public string ORD_WID { get; set; }
|
|
|
|
|
|
|
|
|
//订单长度
|
|
|
[Persistent("ORD_LEN"), DisplayName("订单长度")]
|
|
|
public string ORD_LEN { get; set; }
|
|
|
|
|
|
|
|
|
//订单重量
|
|
|
[Persistent("ORD_WGT"), DisplayName("订单重量")]
|
|
|
public string ORD_WGT { get; set; }
|
|
|
|
|
|
|
|
|
//下倒工序
|
|
|
[Persistent("NEXT_PROC"), DisplayName("下倒工序")]
|
|
|
public string NEXT_PROC { get; set; }
|
|
|
|
|
|
|
|
|
//实际取样代码
|
|
|
[Persistent("ACT_SMP_FL"), DisplayName("实际取样代码")]
|
|
|
public string ACT_SMP_FL { get; set; }
|
|
|
|
|
|
|
|
|
//实际取样长度
|
|
|
[Persistent("ACT_SMP_LEN"), DisplayName("实际取样长度")]
|
|
|
public string ACT_SMP_LEN { get; set; }
|
|
|
|
|
|
|
|
|
//客户代码
|
|
|
[Persistent("CUST_CD"), DisplayName("客户代码")]
|
|
|
public string CUST_CD { get; set; }
|
|
|
|
|
|
|
|
|
//堆放工厂
|
|
|
[Persistent("CUR_INV"), DisplayName("堆放工厂")]
|
|
|
public string CUR_INV { get; set; }
|
|
|
|
|
|
|
|
|
//改判前标准
|
|
|
[Persistent("BEF_APLY_STDSPEC"), DisplayName("改判前标准")]
|
|
|
public string BEF_APLY_STDSPEC { get; set; }
|
|
|
|
|
|
|
|
|
//标准改判标志
|
|
|
[Persistent("STDSPEC_UPD_FL"), DisplayName("标准改判标志")]
|
|
|
public string STDSPEC_UPD_FL { get; set; }
|
|
|
|
|
|
|
|
|
//定尺代码
|
|
|
[Persistent("SIZE_KND"), DisplayName("定尺代码")]
|
|
|
public string SIZE_KND { get; set; }
|
|
|
|
|
|
|
|
|
//宝信发送时间 090609后为寄仓时间
|
|
|
[Persistent("BAOXIN_IF_DATE"), DisplayName("宝信发送时间 090609后为寄仓时间")]
|
|
|
public string BAOXIN_IF_DATE { get; set; }
|
|
|
|
|
|
|
|
|
//原料重量
|
|
|
[Persistent("SLAB_WGT"), DisplayName("原料重量")]
|
|
|
public string SLAB_WGT { get; set; }
|
|
|
|
|
|
|
|
|
//客户特殊要求号
|
|
|
[Persistent("CUST_SPEC_NO"), DisplayName("客户特殊要求号")]
|
|
|
public string CUST_SPEC_NO { get; set; }
|
|
|
|
|
|
|
|
|
//过磅重量
|
|
|
[Persistent("LOAD_WGT"), DisplayName("过磅重量")]
|
|
|
public string LOAD_WGT { get; set; }
|
|
|
|
|
|
|
|
|
//2 现货、1 或者空 非现货
|
|
|
[Persistent("PRICE_GRD"), DisplayName("2 现货、1 或者空 非现货")]
|
|
|
public string PRICE_GRD { get; set; }
|
|
|
|
|
|
|
|
|
//判定日期
|
|
|
[Persistent("PRICE_GRD_DATE"), DisplayName("判定日期")]
|
|
|
public string PRICE_GRD_DATE { get; set; }
|
|
|
|
|
|
|
|
|
//判定时间
|
|
|
[Persistent("PRICE_GRD_TIME"), DisplayName("判定时间")]
|
|
|
public string PRICE_GRD_TIME { get; set; }
|
|
|
|
|
|
|
|
|
//判定人员
|
|
|
[Persistent("PRICE_GRD_EMP_CD"), DisplayName("判定人员")]
|
|
|
public string PRICE_GRD_EMP_CD { get; set; }
|
|
|
|
|
|
|
|
|
//改判原因
|
|
|
[Persistent("CHG_GRD_RES"), DisplayName("改判原因")]
|
|
|
public string CHG_GRD_RES { get; set; }
|
|
|
|
|
|
|
|
|
//是否标印
|
|
|
[Persistent("MARKING_FL"), DisplayName("是否标印")]
|
|
|
public string MARKING_FL { get; set; }
|
|
|
|
|
|
|
|
|
//委托加工标记 W:外购 G:外来加工
|
|
|
[Persistent("MAT_OWNER_FL"), DisplayName("委托加工标记 W:外购 G:外来加工")]
|
|
|
public string MAT_OWNER_FL { get; set; }
|
|
|
|
|
|
|
|
|
//委托加工客户代码
|
|
|
[Persistent("MAT_OWNER_CUST_CD"), DisplayName("委托加工客户代码")]
|
|
|
public string MAT_OWNER_CUST_CD { get; set; }
|
|
|
|
|
|
|
|
|
//实绩通过工序
|
|
|
[Persistent("RSLT_PROC_CD"), DisplayName("实绩通过工序")]
|
|
|
public string RSLT_PROC_CD { get; set; }
|
|
|
|
|
|
|
|
|
//是否探伤
|
|
|
[Persistent("UST_RLT_CD"), DisplayName("是否探伤")]
|
|
|
public string UST_RLT_CD { get; set; }
|
|
|
|
|
|
|
|
|
//探伤是否合格
|
|
|
[Persistent("UST_STATUS"), DisplayName("探伤是否合格")]
|
|
|
public string UST_STATUS { get; set; }
|
|
|
|
|
|
|
|
|
//抛丸指示代码
|
|
|
[Persistent("HTM_SHOT_BLAST"), DisplayName("抛丸指示代码")]
|
|
|
public string HTM_SHOT_BLAST { get; set; }
|
|
|
|
|
|
|
|
|
//抛丸实绩代码
|
|
|
[Persistent("HTM_SHOT_BLAST_RLT"), DisplayName("抛丸实绩代码")]
|
|
|
public string HTM_SHOT_BLAST_RLT { get; set; }
|
|
|
|
|
|
|
|
|
//热处理处理代码,有值则代表有计划或者正在做热处理
|
|
|
[Persistent("HTM_RSLT_FL"), DisplayName("热处理处理代码,有值则代表有计划或者正在做热处理")]
|
|
|
public string HTM_RSLT_FL { get; set; }
|
|
|
|
|
|
|
|
|
//热处理方法1
|
|
|
[Persistent("HTM_METH1"), DisplayName("热处理方法1")]
|
|
|
public string HTM_METH1 { get; set; }
|
|
|
|
|
|
|
|
|
//热处理条件1
|
|
|
[Persistent("HTM_COND1"), DisplayName("热处理条件1")]
|
|
|
public string HTM_COND1 { get; set; }
|
|
|
|
|
|
|
|
|
//热处理实绩1
|
|
|
[Persistent("HTM_RLT_METH1"), DisplayName("热处理实绩1")]
|
|
|
public string HTM_RLT_METH1 { get; set; }
|
|
|
|
|
|
|
|
|
//热处理方法2
|
|
|
[Persistent("HTM_METH2"), DisplayName("热处理方法2")]
|
|
|
public string HTM_METH2 { get; set; }
|
|
|
|
|
|
|
|
|
//热处理条件2
|
|
|
[Persistent("HTM_COND2"), DisplayName("热处理条件2")]
|
|
|
public string HTM_COND2 { get; set; }
|
|
|
|
|
|
|
|
|
//热处理实绩2
|
|
|
[Persistent("HTM_RLT_METH2"), DisplayName("热处理实绩2")]
|
|
|
public string HTM_RLT_METH2 { get; set; }
|
|
|
|
|
|
|
|
|
//热处理方法3
|
|
|
[Persistent("HTM_METH3"), DisplayName("热处理方法3")]
|
|
|
public string HTM_METH3 { get; set; }
|
|
|
|
|
|
|
|
|
//热处理条件3
|
|
|
[Persistent("HTM_COND3"), DisplayName("热处理条件3")]
|
|
|
public string HTM_COND3 { get; set; }
|
|
|
|
|
|
|
|
|
//热处理实绩3
|
|
|
[Persistent("HTM_RLT_METH3"), DisplayName("热处理实绩3")]
|
|
|
public string HTM_RLT_METH3 { get; set; }
|
|
|
|
|
|
|
|
|
//热处理方法4
|
|
|
[Persistent("HTM_METH4"), DisplayName("热处理方法4")]
|
|
|
public string HTM_METH4 { get; set; }
|
|
|
|
|
|
|
|
|
//热处理条件4
|
|
|
[Persistent("HTM_COND4"), DisplayName("热处理条件4")]
|
|
|
public string HTM_COND4 { get; set; }
|
|
|
|
|
|
|
|
|
//热处理实绩4
|
|
|
[Persistent("HTM_RLT_METH4"), DisplayName("热处理实绩4")]
|
|
|
public string HTM_RLT_METH4 { get; set; }
|
|
|
|
|
|
|
|
|
//热处理方法5
|
|
|
[Persistent("HTM_METH5"), DisplayName("热处理方法5")]
|
|
|
public string HTM_METH5 { get; set; }
|
|
|
|
|
|
|
|
|
//热处理条件5
|
|
|
[Persistent("HTM_COND5"), DisplayName("热处理条件5")]
|
|
|
public string HTM_COND5 { get; set; }
|
|
|
|
|
|
|
|
|
//热处理实绩5
|
|
|
[Persistent("HTM_RLT_METH5"), DisplayName("热处理实绩5")]
|
|
|
public string HTM_RLT_METH5 { get; set; }
|
|
|
|
|
|
|
|
|
//修磨指示
|
|
|
[Persistent("GRID_FL"), DisplayName("修磨指示")]
|
|
|
public string GRID_FL { get; set; }
|
|
|
|
|
|
|
|
|
//修磨实绩
|
|
|
[Persistent("GRID_RSLT"), DisplayName("修磨实绩")]
|
|
|
public string GRID_RSLT { get; set; }
|
|
|
|
|
|
|
|
|
//矫直指示
|
|
|
[Persistent("CL_FL"), DisplayName("矫直指示")]
|
|
|
public string CL_FL { get; set; }
|
|
|
|
|
|
|
|
|
//矫直实绩
|
|
|
[Persistent("CL_RSLT"), DisplayName("矫直实绩")]
|
|
|
public string CL_RSLT { get; set; }
|
|
|
|
|
|
|
|
|
//切割指示
|
|
|
[Persistent("GAS_FL"), DisplayName("切割指示")]
|
|
|
public string GAS_FL { get; set; }
|
|
|
|
|
|
|
|
|
//切割实绩
|
|
|
[Persistent("GAS_RSLT"), DisplayName("切割实绩")]
|
|
|
public string GAS_RSLT { get; set; }
|
|
|
|
|
|
|
|
|
//探伤次数
|
|
|
[Persistent("UST_CNT"), DisplayName("探伤次数")]
|
|
|
public string UST_CNT { get; set; }
|
|
|
|
|
|
|
|
|
//切割次数
|
|
|
[Persistent("CUT_CNT"), DisplayName("切割次数")]
|
|
|
public string CUT_CNT { get; set; }
|
|
|
|
|
|
|
|
|
//热处理次数
|
|
|
[Persistent("HTM_CNT"), DisplayName("热处理次数")]
|
|
|
public string HTM_CNT { get; set; }
|
|
|
|
|
|
|
|
|
//矫直次数
|
|
|
[Persistent("CL_CNT"), DisplayName("矫直次数")]
|
|
|
public string CL_CNT { get; set; }
|
|
|
|
|
|
|
|
|
//抛丸次数
|
|
|
[Persistent("SB_CNT"), DisplayName("抛丸次数")]
|
|
|
public string SB_CNT { get; set; }
|
|
|
|
|
|
|
|
|
//修磨次数
|
|
|
[Persistent("GRD_CNT"), DisplayName("修磨次数")]
|
|
|
public string GRD_CNT { get; set; }
|
|
|
|
|
|
|
|
|
//退货原因
|
|
|
[Persistent("CLAIM_RES"), DisplayName("退货原因")]
|
|
|
public string CLAIM_RES { get; set; }
|
|
|
|
|
|
|
|
|
//退货时间
|
|
|
[Persistent("CLAIM_DATE"), DisplayName("退货时间")]
|
|
|
public string CLAIM_DATE { get; set; }
|
|
|
|
|
|
|
|
|
//退货厚度
|
|
|
[Persistent("CLAIM_THK"), DisplayName("退货厚度")]
|
|
|
public string CLAIM_THK { get; set; }
|
|
|
|
|
|
|
|
|
//退货宽度
|
|
|
[Persistent("CLAIM_WID"), DisplayName("退货宽度")]
|
|
|
public string CLAIM_WID { get; set; }
|
|
|
|
|
|
|
|
|
//退货长度
|
|
|
[Persistent("CLAIM_LEN"), DisplayName("退货长度")]
|
|
|
public string CLAIM_LEN { get; set; }
|
|
|
|
|
|
|
|
|
//退货重量
|
|
|
[Persistent("CLAIM_WGT"), DisplayName("退货重量")]
|
|
|
public string CLAIM_WGT { get; set; }
|
|
|
|
|
|
|
|
|
//抛送ERP时间(综判)
|
|
|
[Persistent("ERP_IF_DATE"), DisplayName("抛送ERP时间(综判)")]
|
|
|
public string ERP_IF_DATE { get; set; }
|
|
|
|
|
|
|
|
|
//下道热处理方法
|
|
|
[Persistent("NEXT_PLAN_HTM"), DisplayName("下道热处理方法")]
|
|
|
public string NEXT_PLAN_HTM { get; set; }
|
|
|
|
|
|
|
|
|
//下道热处理条件
|
|
|
[Persistent("NEXT_PLAN_HTM_COND"), DisplayName("下道热处理条件")]
|
|
|
public string NEXT_PLAN_HTM_COND { get; set; }
|
|
|
|
|
|
|
|
|
//钢板计划切割块数
|
|
|
[Persistent("PLAN_CUT_CNT"), DisplayName("钢板计划切割块数")]
|
|
|
public string PLAN_CUT_CNT { get; set; }
|
|
|
|
|
|
|
|
|
//留样指示
|
|
|
[Persistent("SMP_SET_FL"), DisplayName("留样指示")]
|
|
|
public string SMP_SET_FL { get; set; }
|
|
|
|
|
|
|
|
|
//压平指示
|
|
|
[Persistent("FP_FL"), DisplayName("压平指示")]
|
|
|
public string FP_FL { get; set; }
|
|
|
|
|
|
|
|
|
//压平实绩
|
|
|
[Persistent("FP_RSLT"), DisplayName("压平实绩")]
|
|
|
public string FP_RSLT { get; set; }
|
|
|
|
|
|
|
|
|
//压平次数
|
|
|
[Persistent("FP_CNT"), DisplayName("压平次数")]
|
|
|
public string FP_CNT { get; set; }
|
|
|
|
|
|
|
|
|
//热轧态实际取样代码
|
|
|
[Persistent("ACT_SMP_FL_R"), DisplayName("热轧态实际取样代码")]
|
|
|
public string ACT_SMP_FL_R { get; set; }
|
|
|
|
|
|
|
|
|
//热轧态实际取样长度
|
|
|
[Persistent("ACT_SMP_LEN_R"), DisplayName("热轧态实际取样长度")]
|
|
|
public string ACT_SMP_LEN_R { get; set; }
|
|
|
|
|
|
|
|
|
//热轧态取样号
|
|
|
[Persistent("SMP_NO_R"), DisplayName("热轧态取样号")]
|
|
|
public string SMP_NO_R { get; set; }
|
|
|
|
|
|
|
|
|
//ERP抛母板耗用
|
|
|
[Persistent("ERP_MPLATE_CHK"), DisplayName("ERP抛母板耗用")]
|
|
|
public string ERP_MPLATE_CHK { get; set; }
|
|
|
|
|
|
|
|
|
//ERP抛钢板产出,目前主要用于记录中板厂计划钢板抛账数据
|
|
|
[Persistent("ERP_PLATE_IN"), DisplayName("ERP抛钢板产出,目前主要用于记录中板厂计划钢板抛账数据")]
|
|
|
public string ERP_PLATE_IN { get; set; }
|
|
|
|
|
|
//替代处理状态
|
|
|
[Persistent("SUB_PRO_STA"), DisplayName("替代处理状态")]
|
|
|
public string SUB_PRO_STA { get; set; }
|
|
|
|
|
|
//是否完全替代
|
|
|
[Persistent("SUB_FULL"), DisplayName("是否完全替代")]
|
|
|
public string SUB_FULL { get; set; }
|
|
|
|
|
|
//替代缺少内容
|
|
|
[Persistent("SUB_LACK_CON"), DisplayName("替代缺少内容")]
|
|
|
public string SUB_LACK_CON { get; set; }
|
|
|
|
|
|
//替代确认状态
|
|
|
[Persistent("SUB_CON_STA"), DisplayName("替代确认状态")]
|
|
|
public string SUB_CON_STA { get; set; }
|
|
|
|
|
|
|
|
|
//替代切割位置1
|
|
|
[Persistent("SUB_CUT_POS_1"), DisplayName("替代切割位置1")]
|
|
|
public string SUB_CUT_POS_1 { get; set; }
|
|
|
|
|
|
|
|
|
//替代切割位置2
|
|
|
[Persistent("SUB_CUT_POS_2"), DisplayName("替代切割位置2")]
|
|
|
public string SUB_CUT_POS_2 { get; set; }
|
|
|
|
|
|
|
|
|
//替代订单号
|
|
|
[Persistent("SUB_ORD_NO"), DisplayName("替代订单号")]
|
|
|
public string SUB_ORD_NO { get; set; }
|
|
|
|
|
|
|
|
|
//替代订单明细号
|
|
|
[Persistent("SUB_ORD_ITEM"), DisplayName("替代订单明细号")]
|
|
|
public string SUB_ORD_ITEM { get; set; }
|
|
|
|
|
|
|
|
|
//替代订单备注
|
|
|
[Persistent("SUB_ORD_REM"), DisplayName("替代订单备注")]
|
|
|
public string SUB_ORD_REM { get; set; }
|
|
|
|
|
|
//替代切割剩余钢坯长1
|
|
|
[Persistent("SUB_SUR_LEN_1"), DisplayName("替代切割剩余钢坯长1")]
|
|
|
public string SUB_SUR_LEN_1 { get; set; }
|
|
|
|
|
|
|
|
|
//替代切割剩余钢坯宽1
|
|
|
[Persistent("SUB_SUR_WID_1"), DisplayName("替代切割剩余钢坯宽1")]
|
|
|
public string SUB_SUR_WID_1 { get; set; }
|
|
|
|
|
|
|
|
|
//替代切割剩余钢坯长2
|
|
|
[Persistent("SUB_SUR_LEN_2"), DisplayName("替代切割剩余钢坯长2")]
|
|
|
public string SUB_SUR_LEN_2 { get; set; }
|
|
|
|
|
|
|
|
|
//替代切割剩余钢坯宽2
|
|
|
[Persistent("SUB_SUR_WID_2"), DisplayName("替代切割剩余钢坯宽2")]
|
|
|
public string SUB_SUR_WID_2 { get; set; }
|
|
|
|
|
|
|
|
|
//替代切割剩余钢坯判废状态1(0:剩余;1:判废)
|
|
|
[Persistent("SUB_SUR_STA_1"), DisplayName("替代切割剩余钢坯判废状态1(0:剩余;1:判废)")]
|
|
|
public string SUB_SUR_STA_1 { get; set; }
|
|
|
|
|
|
|
|
|
//替代切割剩余钢坯判废状态2(0:剩余;1:判废)
|
|
|
[Persistent("SUB_SUR_STA_2"), DisplayName("替代切割剩余钢坯判废状态2(0:剩余;1:判废)")]
|
|
|
public string SUB_SUR_STA_2 { get; set; }
|
|
|
|
|
|
|
|
|
//替代时间
|
|
|
[Persistent("SUB_DATE"), DisplayName("替代时间")]
|
|
|
public string SUB_DATE { get; set; }
|
|
|
|
|
|
//替代块数
|
|
|
[Persistent("SUB_NUM"), DisplayName("替代块数")]
|
|
|
public string SUB_NUM { get; set; }
|
|
|
|
|
|
//替代排列方向
|
|
|
[Persistent("SUB_DIR"), DisplayName("替代排列方向")]
|
|
|
public string SUB_DIR { get; set; }
|
|
|
|
|
|
//替代剩余可用宽度
|
|
|
[Persistent("SUB_US_WID"), DisplayName("替代剩余可用宽度")]
|
|
|
public string SUB_US_WID { get; set; }
|
|
|
|
|
|
|
|
|
//替代剩余可用长度
|
|
|
[Persistent("SUB_US_LEN"), DisplayName("替代剩余可用长度")]
|
|
|
public string SUB_US_LEN { get; set; }
|
|
|
|
|
|
//替代切割点X
|
|
|
[Persistent("SUB_CUT_X"), DisplayName("替代切割点X")]
|
|
|
public string SUB_CUT_X { get; set; }
|
|
|
|
|
|
//替代切割点Y
|
|
|
[Persistent("SUB_CUT_Y"), DisplayName("替代切割点Y")]
|
|
|
public string SUB_CUT_Y { get; set; }
|
|
|
|
|
|
//替代损失重量
|
|
|
[Persistent("SUB_LOS_WGT"), DisplayName("替代损失重量")]
|
|
|
public string SUB_LOS_WGT { get; set; }
|
|
|
|
|
|
//替代人员
|
|
|
[Persistent("SUB_USER"), DisplayName("替代人员")]
|
|
|
public string SUB_USER { get; set; }
|
|
|
|
|
|
//替代前订单订单号
|
|
|
[Persistent("BOB_ORD_NO"), DisplayName("替代前订单订单号")]
|
|
|
public string BOB_ORD_NO { get; set; }
|
|
|
|
|
|
//替代前订单序列
|
|
|
[Persistent("BOB_ORD_ITEM"), DisplayName("替代前订单序列")]
|
|
|
public string BOB_ORD_ITEM { get; set; }
|
|
|
|
|
|
//替代前订单订单标准
|
|
|
[Persistent("BOB_STDSPEC"), DisplayName("替代前订单订单标准")]
|
|
|
public string BOB_STDSPEC { get; set; }
|
|
|
|
|
|
//替代前订单厚度
|
|
|
[Persistent("BOB_ORD_THK"), DisplayName("替代前订单厚度")]
|
|
|
public string BOB_ORD_THK { get; set; }
|
|
|
|
|
|
//替代前订单宽度
|
|
|
[Persistent("BOB_ORD_WID"), DisplayName("替代前订单宽度")]
|
|
|
public string BOB_ORD_WID { get; set; }
|
|
|
|
|
|
//替代前订单长度
|
|
|
[Persistent("BOB_ORD_LEN"), DisplayName("替代前订单长度")]
|
|
|
public string BOB_ORD_LEN { get; set; }
|
|
|
|
|
|
//替代前订单重量
|
|
|
[Persistent("BOB_WGT_UNIT"), DisplayName("替代前订单重量")]
|
|
|
public string BOB_WGT_UNIT { get; set; }
|
|
|
|
|
|
//替代前订单客户名称
|
|
|
[Persistent("BOB_CUST_CD"), DisplayName("替代前订单客户名称")]
|
|
|
public string BOB_CUST_CD { get; set; }
|
|
|
|
|
|
//替代前订单订单用途
|
|
|
[Persistent("BOB_ENDUSE_CD"), DisplayName("替代前订单订单用途")]
|
|
|
public string BOB_ENDUSE_CD { get; set; }
|
|
|
|
|
|
//替代前订单订单种类
|
|
|
[Persistent("BOB_ORD_KND"), DisplayName("替代前订单订单种类")]
|
|
|
public string BOB_ORD_KND { get; set; }
|
|
|
|
|
|
//原始订单订单号
|
|
|
[Persistent("BOO_ORD_NO"), DisplayName("原始订单订单号")]
|
|
|
public string BOO_ORD_NO { get; set; }
|
|
|
|
|
|
//原始订单序列
|
|
|
[Persistent("BOO_ORD_ITEM"), DisplayName("原始订单序列")]
|
|
|
public string BOO_ORD_ITEM { get; set; }
|
|
|
|
|
|
//原始订单订单标准
|
|
|
[Persistent("BOO_STDSPEC"), DisplayName("原始订单订单标准")]
|
|
|
public string BOO_STDSPEC { get; set; }
|
|
|
|
|
|
//原始订单厚度
|
|
|
[Persistent("BOO_ORD_THK"), DisplayName("原始订单厚度")]
|
|
|
public string BOO_ORD_THK { get; set; }
|
|
|
|
|
|
//原始订单宽度
|
|
|
[Persistent("BOO_ORD_WID"), DisplayName("原始订单宽度")]
|
|
|
public string BOO_ORD_WID { get; set; }
|
|
|
|
|
|
//原始订单长度
|
|
|
[Persistent("BOO_ORD_LEN"), DisplayName("原始订单长度")]
|
|
|
public string BOO_ORD_LEN { get; set; }
|
|
|
|
|
|
//原始订单重量
|
|
|
[Persistent("BOO_WGT_UNIT"), DisplayName("原始订单重量")]
|
|
|
public string BOO_WGT_UNIT { get; set; }
|
|
|
|
|
|
//原始订单客户名称
|
|
|
[Persistent("BOO_CUST_CD"), DisplayName("原始订单客户名称")]
|
|
|
public string BOO_CUST_CD { get; set; }
|
|
|
|
|
|
}
|
|
|
}
|