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.

202 lines
6.1 KiB
C#

5 months ago
//using System;
//using System.Collections.Generic;
//using System.Linq;
//using System.Text;
//using System.Threading.Tasks;
//namespace SlabHandle.Enity
//{
// internal class EP_SLAB_DES
// {
// }
//}
using SOA.Persistent;
using System;
using System.ComponentModel;
namespace MES.Interface
{
[Serializable, Table("EP_SLAB_DES")]
public class EP_SLAB_DES
{
//板坯编制号
[Persistent("SLAB_EDT_SEQ"), DisplayName("板坯编制号")]
public int SLAB_EDT_SEQ { get; set; }
//轧件分块顺序
[Persistent("BLOCK_SEQ"), DisplayName("轧件分块顺序")]
public string BLOCK_SEQ { get; set; }
//顺序
[Persistent("SEQ"), DisplayName("顺序")]
public string SEQ { get; set; }
//板坯管理号
[Persistent("SLAB_NO"), DisplayName("板坯管理号")]
public string SLAB_NO { 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("ORD_NO"), DisplayName("订单号")]
public string ORD_NO { get; set; }
//订单序列号
[Persistent("ORD_ITEM"), DisplayName("订单序列号")]
public string ORD_ITEM { get; set; }
//订单数量
[Persistent("ORD_CNT"), DisplayName("订单数量")]
public int ORD_CNT { get; set; }
//过量生产代码
[Persistent("OVER_FL"), DisplayName("过量生产代码")]
public string OVER_FL { get; set; }
//产品代码
[Persistent("PROD_CD"), DisplayName("产品代码")]
public string PROD_CD { get; set; }
//钢种
[Persistent("STLGRD"), DisplayName("钢种")]
public string STLGRD { get; set; }
//厚度
[Persistent("THK"), DisplayName("厚度")]
public Decimal THK { get; set; }
//宽度
[Persistent("WID"), DisplayName("宽度")]
public Decimal WID { get; set; }
//长度
[Persistent("LEN"), DisplayName("长度")]
public Decimal LEN { get; set; }
//重量
[Persistent("WGT"), DisplayName("重量")]
public Decimal WGT { get; set; }
//数量
[Persistent("CNT"), DisplayName("数量")]
public int CNT { get; set; }
//控轧代码
[Persistent("CR_CD"), DisplayName("控轧代码")]
public string CR_CD { get; set; }
//超声波探伤代码
[Persistent("UST_FL"), DisplayName("超声波探伤代码")]
public string UST_FL { get; set; }
//切边代码
[Persistent("TRIM_FL"), DisplayName("切边代码")]
public string TRIM_FL { 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 Decimal SMP_LEN { get; set; }
//试样号
[Persistent("SMP_NO"), DisplayName("试样号")]
public string SMP_NO { get; set; }
//录入日期
[Persistent("INS_DATE"), DisplayName("录入日期")]
public string INS_DATE { get; set; }
//录入时刻
[Persistent("INS_TIME"), DisplayName("录入时刻")]
public string INS_TIME { get; set; }
//结束日期
[Persistent("END_DATE"), DisplayName("结束日期")]
public string END_DATE { get; set; }
//结束时刻
[Persistent("END_TIME"), DisplayName("结束时刻")]
public string END_TIME { get; set; }
//变更程序 ID
[Persistent("UPD_PGMID"), DisplayName("变更程序 ID")]
public string UPD_PGMID { get; set; }
//记录状态代码
[Persistent("REC_STS"), DisplayName("记录状态代码")]
public string REC_STS { get; set; }
//设计取样长度
[Persistent("DESIGN_SMP_LEN"), DisplayName("设计取样长度")]
public Decimal DESIGN_SMP_LEN { get; set; }
//板坯切割顺序
[Persistent("SLAB_CUT_SEQ"), DisplayName("板坯切割顺序")]
public string SLAB_CUT_SEQ { get; set; }
//板坯长度
[Persistent("SLAB_LEN"), DisplayName("板坯长度")]
public Decimal SLAB_LEN { get; set; }
//板坯重量
[Persistent("SLAB_WGT"), DisplayName("板坯重量")]
public Decimal SLAB_WGT { get; set; }
//热处理抛丸
[Persistent("HTM_SHOT_BLAST"), DisplayName("热处理抛丸")]
public string HTM_SHOT_BLAST { 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; }
//热处理方法2
[Persistent("HTM_METH2"), DisplayName("热处理方法2")]
public string HTM_METH2 { get; set; }
//热处理条件2
[Persistent("HTM_COND2"), DisplayName("热处理条件2")]
public string HTM_COND2 { 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; }
//订单材/余材代码
[Persistent("ORD_FL"), DisplayName("订单材/余材代码")]
public string ORD_FL { get; set; }
[Persistent("MID_SMP_LEN"), DisplayName("")]
public Decimal MID_SMP_LEN { get; set; }
//实际板坯号
[Persistent("ACT_SLAB_NO"), DisplayName("实际板坯号")]
public string ACT_SLAB_NO { get; set; }
}
}