You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

250 lines
6.5 KiB
C#

using SOA.Persistent;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SlabHandle
{
[Serializable, Table("EP_REQ_SLAB")]
public class EP_REQ_SLAB
{
//行号
[Persistent("ROW_NUM"), DisplayName("行号")]
public string ROW_NUM { get; set; }
//行号
[Persistent("ROWNUM"), DisplayName("行号")]
public string ROWNUM { get; set; }
//申请顺序
[Persistent("REQ_SEQ_NO"), DisplayName("申请顺序")]
public string REQ_SEQ_NO { get; set; }
//坯料供料炼钢厂
[Persistent("SUPLY_SMS_PLT"), DisplayName("坯料供料炼钢厂")]
public string SUPLY_SMS_PLT { get; set; }
//坯料申请厂
[Persistent("REQ_PLT"), DisplayName("坯料申请厂")]
public string REQ_PLT { get; set; }
//钢种
[Persistent("STLGRD"), DisplayName("钢种")]
public string STLGRD { get; set; }
//板坯厚度
[Persistent("SLAB_THK"), DisplayName("板坯厚度")]
public Decimal SLAB_THK { get; set; }
//板坯宽度
[Persistent("SLAB_WID"), DisplayName("板坯宽度")]
public Decimal SLAB_WID { get; set; }
//板坯长度
[Persistent("SLAB_LEN"), DisplayName("板坯长度")]
public Decimal SLAB_LEN { get; set; }
//板坯重量
[Persistent("SLAB_WGT"), DisplayName("板坯重量")]
public Decimal SLAB_WGT { get; set; }
//申请HCR 代码
[Persistent("REQ_HCR_FL"), DisplayName("申请HCR 代码")]
public string REQ_HCR_FL { get; set; }
//订单号
[Persistent("ORD_NO"), DisplayName("订单号")]
public string ORD_NO { get; set; }
//订单序列号
[Persistent("ORD_ITEM"), DisplayName("订单序列号")]
public string ORD_ITEM { get; set; }
//订单材/余材代码
[Persistent("ORD_FL"), DisplayName("订单材/余材代码")]
public string ORD_FL { get; set; }
//炼钢工艺流程
[Persistent("MLT_PROC_CD"), DisplayName("炼钢工艺流程")]
public string MLT_PROC_CD { get; set; }
//计划使用日期
[Persistent("REQ_LIMI_DATE"), DisplayName("计划使用日期")]
public string REQ_LIMI_DATE { get; set; }
//计划使用顺序
[Persistent("REQ_SEQ"), DisplayName("计划使用顺序")]
public string REQ_SEQ { get; set; }
//切割数
[Persistent("SLAB_CUT_CNT"), DisplayName("切割数")]
public int SLAB_CUT_CNT { get; set; }
//板坯编制号
[Persistent("SLAB_EDT_SEQ"), DisplayName("板坯编制号")]
public int SLAB_EDT_SEQ { get; set; }
//板坯号
[Persistent("SLAB_NO"), DisplayName("板坯号")]
public string SLAB_NO { get; set; }
//HCR 代码
[Persistent("HCR_FL"), DisplayName("HCR 代码")]
public string HCR_FL { get; set; }
//ERP接口最终传送日期
[Persistent("ERP_IF_DATE"), DisplayName("ERP接口最终传送日期")]
public string ERP_IF_DATE { get; set; }
//前进程代码
[Persistent("BEF_PROC_CD"), DisplayName("前进程代码")]
public string BEF_PROC_CD { get; set; }
//进程代码
[Persistent("PROC_CD"), DisplayName("进程代码")]
public string PROC_CD { get; set; }
//确定状态
[Persistent("CNF_FL"), DisplayName("确定状态")]
public string CNF_FL { get; set; }
//标识
[Persistent("FL"), DisplayName("标识")]
public string FL { get; set; }
//录入日期
[Persistent("INS_DATE"), DisplayName("录入日期")]
public string INS_DATE { get; set; }
//录入时刻
[Persistent("INS_TIME"), DisplayName("录入时刻")]
public string INS_TIME { get; set; }
//录入人员
[Persistent("INS_EMP"), DisplayName("录入人员")]
public string INS_EMP { get; set; }
//确定日期
[Persistent("CNF_DATE"), DisplayName("确定日期")]
public string CNF_DATE { get; set; }
//确定时间
[Persistent("CNF_TIME"), DisplayName("确定时间")]
public string CNF_TIME { get; set; }
//确定人
[Persistent("CNF_EMP"), DisplayName("确定人")]
public string CNF_EMP { get; set; }
//取消日期
[Persistent("CAN_DATE"), DisplayName("取消日期")]
public string CAN_DATE { get; set; }
//取消时间
[Persistent("CAN_TIME"), DisplayName("取消时间")]
public string CAN_TIME { get; set; }
//取消人
[Persistent("CAN_EMP"), DisplayName("取消人")]
public string CAN_EMP { get; set; }
//变更程序ID
[Persistent("UPD_PGMID"), DisplayName("变更程序ID")]
public string UPD_PGMID { get; set; }
//入库板坯厚度
[Persistent("IN_SLAB_THK"), DisplayName("入库板坯厚度")]
public Decimal IN_SLAB_THK { get; set; }
//入库板坯宽度
[Persistent("IN_SLAB_WID"), DisplayName("入库板坯宽度")]
public Decimal IN_SLAB_WID { get; set; }
//入库板坯长度
[Persistent("IN_SLAB_LEN"), DisplayName("入库板坯长度")]
public Decimal IN_SLAB_LEN { get; set; }
//入库HCR 代码
[Persistent("IN_HCR_FL"), DisplayName("入库HCR 代码")]
public string IN_HCR_FL { get; set; }
//入库日期
[Persistent("IN_DATE"), DisplayName("入库日期")]
public string IN_DATE { get; set; }
//进程状态代码
[Persistent("REC_STS"), DisplayName("进程状态代码")]
public string REC_STS { get; set; }
//板坯类型
[Persistent("INGOT_FL"), DisplayName("板坯类型")]
public string INGOT_FL { get; set; }
//切头厚度
[Persistent("HEAD_SLAB_THK"), DisplayName("切头厚度")]
public Decimal HEAD_SLAB_THK { get; set; }
//切尾厚度
[Persistent("TAIL_SLAB_THK"), DisplayName("切尾厚度")]
public Decimal TAIL_SLAB_THK { get; set; }
//切头宽度
[Persistent("HEAD_SLAB_WID"), DisplayName("切头宽度")]
public Decimal HEAD_SLAB_WID { get; set; }
//切尾宽度
[Persistent("TAIL_SLAB_WID"), DisplayName("切尾宽度")]
public Decimal TAIL_SLAB_WID { get; set; }
}
}