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.
59 lines
1.8 KiB
C#
59 lines
1.8 KiB
C#
using Newtonsoft.Json;
|
|
using SOA.Persistent;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SlabHandle
|
|
{
|
|
[Serializable, Table("QP_QLTY_CHEM")]
|
|
[JsonObject]
|
|
public class QP_QLTY_CHEM
|
|
{
|
|
[Persistent("ORD_NO"), DisplayName("订单号")]
|
|
public string ORD_NO { get; set; }
|
|
|
|
[Persistent("ORD_ITEM"), DisplayName("订单序列号")]
|
|
public string ORD_ITEM { get; set; }
|
|
|
|
[Persistent("KND"), DisplayName("分类")]
|
|
public string KND { get; set; }
|
|
|
|
[Persistent("CHEM_COMP_CD"), DisplayName("化学成分代码")]
|
|
public string CHEM_COMP_CD { get; set; }
|
|
|
|
[Persistent("FOMULA_CD"), DisplayName("计算公式")]
|
|
public string FOMULA_CD { get; set; }
|
|
|
|
[Persistent("CHEM_COMP_MIN"), DisplayName("化学成分最小值")]
|
|
public string CHEM_COMP_MIN { get; set; }
|
|
|
|
[Persistent("CHEM_COMP_MAX"), DisplayName("化学成分最大值")]
|
|
public string CHEM_COMP_MAX { get; set; }
|
|
|
|
[Persistent("CHEM_COMP_TGT"), DisplayName("化学成分目标值")]
|
|
public string CHEM_COMP_TGT { get; set; }
|
|
|
|
[Persistent("INS_DATE"), DisplayName("录入日期")]
|
|
public string INS_DATE { get; set; }
|
|
|
|
[Persistent("INS_TIME"), DisplayName("录入时间")]
|
|
public string INS_TIME { 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; }
|
|
|
|
[Persistent("RK"), DisplayName("KND最大排序")]
|
|
public string RK { get; set; }
|
|
}
|
|
}
|