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.

36 lines
949 B
C#

5 months ago
using SOA.Persistent;
using System.ComponentModel;
namespace SlabHandle.Enity
{
public class TB_SLAB_INFO
{
//板坯号
[Persistent("SLAB_NO"), DisplayName("板坯号")]
public string SLAB_NO { get; set; }
//宽度
[Persistent("WID"), DisplayName("宽度")]
public decimal WID { get; set; }
//厚度
[Persistent("THK"), DisplayName("厚度")]
public decimal THK { get; set; }
//长度
[Persistent("LEN"), DisplayName("长度")]
public decimal LEN { get; set; }
//重量
[Persistent("WGT"), DisplayName("重量")]
public decimal WGT { get; set; }
//剩余长度
[Persistent("SUR_LEN"), DisplayName("剩余长度")]
public decimal SUR_LEN { get; set; }
//剩余重量
[Persistent("SUR_WGT"), DisplayName("剩余重量")]
public decimal SUR_WGT { get; set; }
}
}