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.

42 lines
1.3 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using Newtonsoft.Json;
using SOA.Persistent;
using System;
using System.ComponentModel;
namespace ibk.IPD.Entity.IPD_PS
{
[Serializable, Table("QP_CHEM_RSLT_FP")]
[JsonObject]
public class QP_CHEM_RSLT_FP
{
[Persistent("SMP_NO"), DisplayName("试样号")]
public string SMP_NO { get; set; }
[Persistent("SMP_CUT_LOC"), DisplayName("取样位置")]
public string SMP_CUT_LOC { 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_RSLT"), DisplayName("修约值")]
public int CHEM_RSLT { get; set; }
[Persistent("CHEM_DSC"), DisplayName("成分是否合格Y/N")]
public string CHEM_DSC { 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("TEST_EQT"), DisplayName("检验设备")]
public string TEST_EQT { get; set; }
}
}