|
|
|
|
|
using SOA.Persistent;
|
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
namespace SlabHandle.Enity
|
|
|
{
|
|
|
[Serializable]
|
|
|
public class TB_M_INFO
|
|
|
{
|
|
|
|
|
|
//组号
|
|
|
[Persistent("GRP_ID"), DisplayName("组号")]
|
|
|
public decimal GRP_ID { get; set; }
|
|
|
|
|
|
//母板号
|
|
|
[Persistent("M_ID"), DisplayName("母板号")]
|
|
|
public decimal M_ID { get; set; }
|
|
|
|
|
|
//钢种
|
|
|
[Persistent("STLGRD"), DisplayName("钢种")]
|
|
|
public string STLGRD { get; set; }
|
|
|
|
|
|
//协议标识
|
|
|
[Persistent("XY_FLG"), DisplayName("协议标识")]
|
|
|
public string XY_FLG { get; set; }
|
|
|
|
|
|
//真空标识
|
|
|
[Persistent("VAC_FLG"), DisplayName("真空标识")]
|
|
|
public string VAC_FLG { get; set; }
|
|
|
|
|
|
//交货期
|
|
|
[Persistent("CUST_DEL_TO_DATE"), DisplayName("交货期")]
|
|
|
public string CUST_DEL_TO_DATE { get; set; }
|
|
|
|
|
|
//目标钢种
|
|
|
[Persistent("STDSPEC_STLGRD"), DisplayName("目标钢种")]
|
|
|
public string STDSPEC_STLGRD { get; set; }
|
|
|
|
|
|
//母板宽度
|
|
|
[Persistent("M_WID"), DisplayName("母板宽度")]
|
|
|
public decimal M_WID { get; set; }
|
|
|
|
|
|
//母板厚度
|
|
|
[Persistent("M_THK"), DisplayName("母板厚度")]
|
|
|
public decimal M_THK { get; set; }
|
|
|
|
|
|
//母板长度
|
|
|
[Persistent("M_LEN"), DisplayName("母板长度")]
|
|
|
public decimal M_LEN { get; set; }
|
|
|
|
|
|
//母板重量
|
|
|
[Persistent("M_WGT"), DisplayName("母板重量")]
|
|
|
public decimal M_WGT { get; set; }
|
|
|
|
|
|
|
|
|
//板坯重量
|
|
|
[Persistent("M_SLAB_WGT"), DisplayName("板坯重量")]
|
|
|
public decimal M_SLAB_WGT { get; set; }
|
|
|
|
|
|
//母板板坯宽度
|
|
|
[Persistent("M_SLAB_WID"), DisplayName("母板板坯宽度")]
|
|
|
public decimal M_SLAB_WID { get; set; }
|
|
|
|
|
|
//母板板坯长度
|
|
|
[Persistent("M_SLAB_LEN"), DisplayName("母板板坯长度")]
|
|
|
public decimal M_SLAB_LEN { get; set; }
|
|
|
|
|
|
//母板切头
|
|
|
[Persistent("M_HEAD_LEN"), DisplayName("母板切头")]
|
|
|
public decimal M_HEAD_LEN { get; set; }
|
|
|
|
|
|
//母板切尾
|
|
|
[Persistent("M_TAIL_LEN"), DisplayName("母板切尾")]
|
|
|
public decimal M_TAIL_LEN { get; set; }
|
|
|
|
|
|
//母板切边
|
|
|
[Persistent("M_WID_MRGIN"), DisplayName("母板切边")]
|
|
|
public decimal M_WID_MRGIN { get; set; }
|
|
|
|
|
|
//母板取样
|
|
|
[Persistent("M_SAMP_LEN"), DisplayName("母板取样")]
|
|
|
public decimal M_SAMP_LEN { get; set; }
|
|
|
|
|
|
//母板切损
|
|
|
[Persistent("M_CUT_LOSS"), DisplayName("母板切损")]
|
|
|
public decimal M_CUT_LOSS { get; set; }
|
|
|
|
|
|
//母板虚拟钢板集合
|
|
|
[Persistent("M_CRU_PIEs"), DisplayName("母板虚拟钢板集合")]
|
|
|
public List<TB_PLATE_FIC> M_CRU_PIEs { get; set; }
|
|
|
|
|
|
////虚拟钢板集合1
|
|
|
//[Persistent("CRU_PIEs_1"), DisplayName("母板虚拟钢板集合1")]
|
|
|
//public List<TB_PLATE_FIC> CRU_PIEs_1 { get; set; }
|
|
|
|
|
|
////虚拟钢板集合2
|
|
|
//[Persistent("CRU_PIEs_2"), DisplayName("母板虚拟钢板集合2")]
|
|
|
//public List<TB_PLATE_FIC> CRU_PIEs_2 { get; set; }
|
|
|
|
|
|
////虚拟钢板集合3
|
|
|
//[Persistent("CRU_PIEs_3"), DisplayName("母板虚拟钢板集合3")]
|
|
|
//public List<TB_PLATE_FIC> CRU_PIEs_3 { get; set; }
|
|
|
|
|
|
////宽度1
|
|
|
//[Persistent("CAL_WID_1"), DisplayName("宽度1")]
|
|
|
//public decimal CAL_WID_1 { get; set; }
|
|
|
|
|
|
////宽度2
|
|
|
//[Persistent("CAL_WID_2"), DisplayName("宽度2")]
|
|
|
//public decimal CAL_WID_2 { get; set; }
|
|
|
|
|
|
////宽度3
|
|
|
//[Persistent("CAL_WID_3"), DisplayName("宽度3")]
|
|
|
//public decimal CAL_WID_3 { get; set; }
|
|
|
|
|
|
////一个母板:1 两个母板:2
|
|
|
//[Persistent("FD_FLG"), DisplayName("母板区分")]
|
|
|
//public int FD_FLG { get; set; }
|
|
|
|
|
|
//母板实际虚拟钢板集合
|
|
|
[Persistent("M_CRU_PIEs_ACT"), DisplayName("实际虚拟钢板集合")]
|
|
|
public List<TB_PLATE_FIC> M_CRU_PIEs_ACT { get; set; }
|
|
|
|
|
|
//母板临时虚拟钢板集合
|
|
|
[Persistent("M_CRU_PIEs_TMP"), DisplayName("母板临时虚拟钢板集合")]
|
|
|
public List<TB_PLATE_FIC> M_CRU_PIEs_TMP { get; set; }
|
|
|
|
|
|
////最大虚拟钢板集合
|
|
|
//[Persistent("MAX_CRU_PIEs"), DisplayName("最大虚拟钢板集合")]
|
|
|
//public List<TB_PLATE_FIC> MAX_CRU_PIEs { get; set; }
|
|
|
|
|
|
////最小虚拟钢板集合
|
|
|
//[Persistent("MIN_CRU_PIEs"), DisplayName("最小虚拟钢板集合")]
|
|
|
//public List<TB_PLATE_FIC> MIN_CRU_PIEs { get; set; }
|
|
|
|
|
|
}
|
|
|
} |