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.

90 lines
2.8 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 SOA.Persistent;
using System;
using System.ComponentModel;
namespace ibk.IPD.Entity.IpdPs
{
[Serializable, Table("QP_TEST_RSLT_HN")]
public class QP_TEST_RSLT_HN
{
//试样编号
[Persistent("SMP_NO"), DisplayName("试样编号")]
public string SMP_NO { get; set; }
//取样位置
[Persistent("SMP_CUT_LOC"), DisplayName("取样位置")]
public string SMP_CUT_LOC { get; set; }
//试验种类
[Persistent("TEST_KND"), DisplayName("试验种类")]
public string TEST_KND { get; set; }
//抗剪强度1实绩单位Mpa
[Persistent("SS1_RM"), DisplayName("抗剪强度1实绩单位Mpa")]
public int SS1_RM { get; set; }
//抗剪强度2实绩单位Mpa
[Persistent("SS2_RM"), DisplayName("抗剪强度2实绩单位Mpa")]
public int SS2_RM { get; set; }
//粘结强度
[Persistent("BOND_RSLT"), DisplayName("粘结强度")]
public string BOND_RSLT { get; set; }
//更新日期
[Persistent("UPD_DATE"), DisplayName("更新日期")]
public string UPD_DATE { get; set; }
//更新时间
[Persistent("UPD_TIME"), DisplayName("更新时间")]
public string UPD_TIME { get; set; }
//是否合格
[Persistent("CHECK_FL"), DisplayName("是否合格")]
public string CHECK_FL { get; set; }
//序号
[Persistent("SMP_SEQ"), DisplayName("序号")]
public string SMP_SEQ { get; set; }
//是否复样
[Persistent("REF_FL"), DisplayName("是否复样")]
public string REF_FL { get; set; }
//是否代表样
[Persistent("RETEST_FL"), DisplayName("是否代表样")]
public string RETEST_FL { get; set; }
//录入日期
[Persistent("INS_DATE"), DisplayName("录入日期")]
public string INS_DATE { get; set; }
//录入时间
[Persistent("INS_TIME"), DisplayName("录入时间")]
public string INS_TIME { get; set; }
//新增人
[Persistent("INS_EMP"), DisplayName("新增人")]
public string INS_EMP { get; set; }
//修改人
[Persistent("UPD_EMP"), DisplayName("修改人")]
public string UPD_EMP { get; set; }
//检验设备
[Persistent("TEST_EQT_NO"), DisplayName("检验设备")]
public string TEST_EQT_NO { get; set; }
//检验日期
[Persistent("TEST_DATE"), DisplayName("检验日期")]
public string TEST_DATE { get; set; }
//检验时间
[Persistent("TEST_TIME"), DisplayName("检验时间")]
public string TEST_TIME { get; set; }
//检验人
[Persistent("TEST_EMP"), DisplayName("检验人")]
public string TEST_EMP { get; set; }
}
}