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.

26 lines
675 B
C#

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 AddPlateCount
{
[Persistent("HEAT_NO"), DisplayName("炉号")]
public string HEAT_NO { get; set; }
[Persistent("THK"), DisplayName("厚度")]
public decimal THK { get; set; }
[Persistent("aply_stdspec"), DisplayName("执行标准")]
public string aply_stdspec { get; set; }
[Persistent("COUNT"), DisplayName("数量")]
public decimal COUNT { get; set; }
}
}