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.

107 lines
3.2 KiB
C#

5 months ago
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_MAX"), DisplayName("厚度上限")]
public decimal THK_MAX { get; set; }
//厚度
[Persistent("THK"), DisplayName("厚度")]
public decimal THK { get; set; }
//厚度
[Persistent("THK_MIN"), DisplayName("厚度下限")]
public decimal THK_MIN { 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; }
public string OVER_FLG { get; set; }
//交货期
[Persistent("CUST_DEL_TO_DATE"), DisplayName("交货期")]
public string CUST_DEL_TO_DATE { get; set; }
//交货期
[Persistent("ChkDiffStdl"), DisplayName("工艺")]
public string ChkDiffStdl { get; set; }
//钢板重量
public decimal decTpfWgt { get; set; }
[Persistent("CCL"), DisplayName("成材率")]
public decimal CCL { get; set; }
}
}