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.
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using SOA.Persistent;
|
|
|
|
|
using System;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
|
|
|
|
namespace SlabHandle
|
|
|
|
|
{
|
|
|
|
|
[Serializable, Table("T_CHEM_CHK")]
|
|
|
|
|
[JsonObject]
|
|
|
|
|
public class T_CHEM_CHK
|
|
|
|
|
{
|
|
|
|
|
[Persistent("HEAT_NO"), DisplayName("炉号")]
|
|
|
|
|
public string HEAT_NO { get; set; }
|
|
|
|
|
|
|
|
|
|
[Persistent("ORD_NO"), DisplayName("订单号")]
|
|
|
|
|
public string ORD_NO { get; set; }
|
|
|
|
|
|
|
|
|
|
[Persistent("ORD_ITEM"), DisplayName("订单项次号")]
|
|
|
|
|
public string ORD_ITEM { get; set; }
|
|
|
|
|
|
|
|
|
|
[Persistent("CHK_FLG"), DisplayName("检测结果")]
|
|
|
|
|
public string CHK_FLG { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|