|
|
|
|
using SOA.Persistent;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace SlabHandle.Enity
|
|
|
|
|
{
|
|
|
|
|
public class TB_PLATE_GRP_THKGRP
|
|
|
|
|
{
|
|
|
|
|
//宽度
|
|
|
|
|
[Persistent("WID"), DisplayName("宽度")]
|
|
|
|
|
public decimal WID { get; set; }
|
|
|
|
|
|
|
|
|
|
//厚度
|
|
|
|
|
[Persistent("THK"), DisplayName("厚度")]
|
|
|
|
|
public decimal THK { get; set; }
|
|
|
|
|
|
|
|
|
|
//切头
|
|
|
|
|
[Persistent("HEAD_LEN"), DisplayName("切头")]
|
|
|
|
|
public decimal HEAD_LEN { get; set; }
|
|
|
|
|
|
|
|
|
|
//切尾
|
|
|
|
|
[Persistent("TAIL_LEN"), DisplayName("切尾")]
|
|
|
|
|
public decimal TAIL_LEN { get; set; }
|
|
|
|
|
|
|
|
|
|
//切边
|
|
|
|
|
[Persistent("WID_MRGIN"), DisplayName("切边")]
|
|
|
|
|
public decimal WID_MRGIN { get; set; }
|
|
|
|
|
|
|
|
|
|
//取样
|
|
|
|
|
[Persistent("SAMP_LEN"), DisplayName("取样")]
|
|
|
|
|
public decimal SAMP_LEN { get; set; }
|
|
|
|
|
|
|
|
|
|
//切损
|
|
|
|
|
[Persistent("CUT_LOSS"), DisplayName("切损")]
|
|
|
|
|
public decimal CUT_LOSS { get; set; }
|
|
|
|
|
// 长度最小值
|
|
|
|
|
[Persistent("MIN_LEN"), DisplayName("长度最小值")]
|
|
|
|
|
public decimal MIN_LEN { get; set; }
|
|
|
|
|
|
|
|
|
|
//长度最大值
|
|
|
|
|
[Persistent("MAX_LEN"), DisplayName("长度最大值")]
|
|
|
|
|
public decimal MAX_LEN { get; set; }
|
|
|
|
|
|
|
|
|
|
//最小重量
|
|
|
|
|
[Persistent("MIN_WGT"), DisplayName("最小重量")]
|
|
|
|
|
public decimal MIN_WGT { get; set; }
|
|
|
|
|
|
|
|
|
|
//最大重量
|
|
|
|
|
[Persistent("MAX_WGT"), DisplayName("最大重量")]
|
|
|
|
|
public decimal MAX_WGT { get; set; }
|
|
|
|
|
//长度
|
|
|
|
|
[Persistent("SLAB_LEN"), DisplayName("长度")]
|
|
|
|
|
public decimal SLAB_LEN { get; set; }
|
|
|
|
|
|
|
|
|
|
//宽度
|
|
|
|
|
[Persistent("CAL_WID"), DisplayName("宽度")]
|
|
|
|
|
public decimal CAL_WID { get; set; }
|
|
|
|
|
|
|
|
|
|
//厚度
|
|
|
|
|
[Persistent("CAL_THK"), DisplayName("厚度")]
|
|
|
|
|
public decimal CAL_THK { get; set; }
|
|
|
|
|
|
|
|
|
|
//长度
|
|
|
|
|
[Persistent("CAL_LEN"), DisplayName("长度")]
|
|
|
|
|
public decimal CAL_LEN { get; set; }
|
|
|
|
|
|
|
|
|
|
//宽度
|
|
|
|
|
[Persistent("SLAB_WID"), DisplayName("宽度")]
|
|
|
|
|
public decimal SLAB_WID { get; set; }
|
|
|
|
|
|
|
|
|
|
//补偿长度
|
|
|
|
|
[Persistent("COM_LEN"), DisplayName("补偿长度")]
|
|
|
|
|
public decimal COM_LEN { get; set; }
|
|
|
|
|
public List<TB_PLATE_FIC> TPF_TMP { get; set; }
|
|
|
|
|
public List<TB_PLATE_GRP> THK_GRP { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<TB_PLATE_GRP> GRP_TMP { get; set; }
|
|
|
|
|
|
|
|
|
|
public List<TB_PLATE_GRP> GRP_ACT { get; set; }
|
|
|
|
|
|
|
|
|
|
public decimal RATE { get; set; }
|
|
|
|
|
//交货期
|
|
|
|
|
[Persistent("CUST_DEL_TO_DATE"), DisplayName("交货期")]
|
|
|
|
|
public string CUST_DEL_TO_DATE { get; set; }
|
|
|
|
|
|
|
|
|
|
//钢板重量
|
|
|
|
|
public decimal decTpfWgt { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|