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.
166 lines
5.8 KiB
C#
166 lines
5.8 KiB
C#
using SOA.Persistent;
|
|
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace ibk.IPD.Entity.IpdPs
|
|
{
|
|
[Serializable, Table("QP_TEST_RSLT_HR")]
|
|
public class QP_TEST_RSLT_HR
|
|
{
|
|
//试样编号
|
|
[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; }
|
|
|
|
//硫印等级实绩
|
|
[Persistent("S_PRINT_RST"), DisplayName("硫印等级实绩")]
|
|
public Decimal S_PRINT_RST { get; set; }
|
|
|
|
//酸浸试验缺陷分类代码1
|
|
[Persistent("ACD_DFT_TYP1"), DisplayName("酸浸试验缺陷分类代码1")]
|
|
public string ACD_DFT_TYP1 { get; set; }
|
|
|
|
//酸浸试验缺陷等级实绩1
|
|
[Persistent("ACD_RST1"), DisplayName("酸浸试验缺陷等级实绩1")]
|
|
public Decimal ACD_RST1 { get; set; }
|
|
|
|
//酸浸试验缺陷分类代码2
|
|
[Persistent("ACD_DFT_TYP2"), DisplayName("酸浸试验缺陷分类代码2")]
|
|
public string ACD_DFT_TYP2 { get; set; }
|
|
|
|
//酸浸试验缺陷等级实绩2
|
|
[Persistent("ACD_RST2"), DisplayName("酸浸试验缺陷等级实绩2")]
|
|
public Decimal ACD_RST2 { get; set; }
|
|
|
|
//酸浸试验缺陷分类代码3
|
|
[Persistent("ACD_DFT_TYP3"), DisplayName("酸浸试验缺陷分类代码3")]
|
|
public string ACD_DFT_TYP3 { get; set; }
|
|
|
|
//酸浸试验缺陷等级实绩3
|
|
[Persistent("ACD_RST3"), DisplayName("酸浸试验缺陷等级实绩3")]
|
|
public Decimal ACD_RST3 { get; set; }
|
|
|
|
//酸浸试验缺陷分类代码4
|
|
[Persistent("ACD_DFT_TYP4"), DisplayName("酸浸试验缺陷分类代码4")]
|
|
public string ACD_DFT_TYP4 { get; set; }
|
|
|
|
//酸浸试验缺陷等级实绩4
|
|
[Persistent("ACD_RST4"), DisplayName("酸浸试验缺陷等级实绩4")]
|
|
public Decimal ACD_RST4 { get; set; }
|
|
|
|
//酸浸试验缺陷分类代码5
|
|
[Persistent("ACD_DFT_TYP5"), DisplayName("酸浸试验缺陷分类代码5")]
|
|
public string ACD_DFT_TYP5 { get; set; }
|
|
|
|
//酸浸试验缺陷等级实绩5
|
|
[Persistent("ACD_RST5"), DisplayName("酸浸试验缺陷等级实绩5")]
|
|
public Decimal ACD_RST5 { get; set; }
|
|
|
|
//断口名称代码1
|
|
[Persistent("FRACT_NAME_CD1"), DisplayName("断口名称代码1")]
|
|
public string FRACT_NAME_CD1 { get; set; }
|
|
|
|
//断口级别1
|
|
[Persistent("FRACT_GRD_RST1"), DisplayName("断口级别1")]
|
|
public int FRACT_GRD_RST1 { get; set; }
|
|
|
|
//断口名称代码2
|
|
[Persistent("FRACT_NAME_CD2"), DisplayName("断口名称代码2")]
|
|
public string FRACT_NAME_CD2 { get; set; }
|
|
|
|
//断口级别2
|
|
[Persistent("FRACT_GRD_RST2"), DisplayName("断口级别2")]
|
|
public int FRACT_GRD_RST2 { get; set; }
|
|
|
|
//断口名称代码3
|
|
[Persistent("FRACT_NAME_CD3"), DisplayName("断口名称代码3")]
|
|
public string FRACT_NAME_CD3 { get; set; }
|
|
|
|
//断口级别3
|
|
[Persistent("FRACT_GRD_RST3"), DisplayName("断口级别3")]
|
|
public int FRACT_GRD_RST3 { get; set; }
|
|
|
|
//断口名称代码4
|
|
[Persistent("FRACT_NAME_CD4"), DisplayName("断口名称代码4")]
|
|
public string FRACT_NAME_CD4 { get; set; }
|
|
|
|
//断口级别4
|
|
[Persistent("FRACT_GRD_RST4"), DisplayName("断口级别4")]
|
|
public int FRACT_GRD_RST4 { get; set; }
|
|
|
|
//断口名称代码5
|
|
[Persistent("FRACT_NAME_CD5"), DisplayName("断口名称代码5")]
|
|
public string FRACT_NAME_CD5 { get; set; }
|
|
|
|
//断口级别5
|
|
[Persistent("FRACT_GRD_RST5"), DisplayName("断口级别5")]
|
|
public int FRACT_GRD_RST5 { 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("SMP_ABN_NOTE"), DisplayName("检验异常备注")]
|
|
public string SMP_ABN_NOTE { 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; }
|
|
}
|
|
} |