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.

78 lines
2.4 KiB
C#

using SOA.Persistent;
using System;
using System.ComponentModel;
namespace SlabHandle
{
[Serializable, Table("QP_PROD_RATIO")]
public class QP_PROD_RATIO
{
//产线
[Persistent("PLT"), DisplayName("产线")]
public string PLT { get; set; }
//标准编号
[Persistent("STDSPEC"), DisplayName("标准编号")]
public string STDSPEC { get; set; }
//交货状态
[Persistent("DELIVERY_STATUS"), DisplayName("交货状态")]
public string DELIVERY_STATUS { get; set; }
//冲击温度下限
[Persistent("IMPACT_TMP_MIN"), DisplayName("冲击温度下限")]
public int IMPACT_TMP_MIN { get; set; }
//冲击温度上线
[Persistent("IMPACT_TMP_MAX"), DisplayName("冲击温度上线")]
public int IMPACT_TMP_MAX { get; set; }
//订单厚度下限
[Persistent("ORD_THK_MIN"), DisplayName("订单厚度下限")]
public Decimal ORD_THK_MIN { get; set; }
//订单厚度上限
[Persistent("ORD_THK_MAX"), DisplayName("订单厚度上限")]
public Decimal ORD_THK_MAX { get; set; }
//坯料厚度下限
[Persistent("THK_MIN"), DisplayName("坯料厚度下限")]
public int THK_MIN { get; set; }
//坯料厚度上限
[Persistent("THK_MAX"), DisplayName("坯料厚度上限")]
public int THK_MAX { get; set; }
//是否允许倍宽轧制
[Persistent("IF_ROLL"), DisplayName("是否允许倍宽轧制")]
public string IF_ROLL { get; set; }
//有效压缩比
[Persistent("RATE"), DisplayName("有效压缩比")]
public Decimal RATE { 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("UPD_DATE"), DisplayName("修改日期")]
public string UPD_DATE { get; set; }
//修改时间
[Persistent("UPD_TIME"), DisplayName("修改时间")]
public string UPD_TIME { get; set; }
//修改人
[Persistent("UPD_EMP"), DisplayName("修改人")]
public string UPD_EMP { get; set; }
}
}