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.
125 lines
4.1 KiB
C#
125 lines
4.1 KiB
C#
using SOA.Persistent;
|
|
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace ibk.IPD.Entity.IpdPs
|
|
{
|
|
[Serializable, Table("QP_QLTY_MATR_HN")]
|
|
public class QP_QLTY_MATR_HN
|
|
{
|
|
[Persistent("RK"), DisplayName("KND最大排序")]
|
|
public string RK { get; set; }
|
|
|
|
//订单号
|
|
[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("TEST_KND"), DisplayName("试验种类")]
|
|
public string TEST_KND { get; set; }
|
|
|
|
//频率种类
|
|
[Persistent("SAMPFREQ"), DisplayName("频率种类")]
|
|
public string SAMPFREQ { get; set; }
|
|
|
|
//频率数
|
|
[Persistent("FREQNUM"), DisplayName("频率数")]
|
|
public string FREQNUM { get; set; }
|
|
|
|
//剪切试验取样代码
|
|
[Persistent("SHEAR_SMP_CD"), DisplayName("剪切试验取样代码")]
|
|
public string SHEAR_SMP_CD { get; set; }
|
|
|
|
//剪切试验1最小值
|
|
[Persistent("S1S_MIN"), DisplayName("剪切试验1最小值")]
|
|
public string S1S_MIN { get; set; }
|
|
|
|
//剪切试验1最大值
|
|
[Persistent("S1S_MAX"), DisplayName("剪切试验1最大值")]
|
|
public string S1S_MAX { get; set; }
|
|
|
|
//剪切试验1种类
|
|
[Persistent("S1S_TYPE"), DisplayName("剪切试验1种类")]
|
|
public string S1S_TYPE { get; set; }
|
|
|
|
//剪切试验1定代码
|
|
[Persistent("S1S_DSC_CD"), DisplayName("剪切试验1定代码")]
|
|
public string S1S_DSC_CD { get; set; }
|
|
|
|
//剪切试验2最小值
|
|
[Persistent("S2S_MIN"), DisplayName("剪切试验2最小值")]
|
|
public string S2S_MIN { get; set; }
|
|
|
|
//剪切试验2最大值
|
|
[Persistent("S2S_MAX"), DisplayName("剪切试验2最大值")]
|
|
public string S2S_MAX { get; set; }
|
|
|
|
//剪切试验2种类
|
|
[Persistent("S2S_TYPE"), DisplayName("剪切试验2种类")]
|
|
public string S2S_TYPE { get; set; }
|
|
|
|
//剪切试验2定代码
|
|
[Persistent("S2S_DSC_CD"), DisplayName("剪切试验2定代码")]
|
|
public string S2S_DSC_CD { get; set; }
|
|
|
|
//剪切试样热处理代码
|
|
[Persistent("SHEAR_HTM_CD"), DisplayName("剪切试样热处理代码")]
|
|
public string SHEAR_HTM_CD { get; set; }
|
|
|
|
//剪切试验取样宽度
|
|
[Persistent("SHEAR_SMP_WID"), DisplayName("剪切试验取样宽度")]
|
|
public string SHEAR_SMP_WID { get; set; }
|
|
|
|
//粘结强度
|
|
[Persistent("BOND_STR_MIN"), DisplayName("粘结强度")]
|
|
public string BOND_STR_MIN { get; set; }
|
|
|
|
//粘结强度判定代码
|
|
[Persistent("BOND_STR_DSC_CD"), DisplayName("粘结强度判定代码")]
|
|
public string BOND_STR_DSC_CD { get; set; }
|
|
|
|
//是否复用
|
|
[Persistent("REUSE"), DisplayName("是否复用")]
|
|
public string REUSE { get; set; }
|
|
|
|
//备注
|
|
[Persistent("MEMO"), DisplayName("备注")]
|
|
public string MEMO { get; set; }
|
|
|
|
//热处理备注
|
|
[Persistent("HEATMEMO"), DisplayName("热处理备注")]
|
|
public string HEATMEMO { get; set; }
|
|
|
|
//加工备注
|
|
[Persistent("MACHINMEMO"), DisplayName("加工备注")]
|
|
public string MACHINMEMO { get; set; }
|
|
|
|
//检验标准
|
|
[Persistent("TESTSTANDARD"), DisplayName("检验标准")]
|
|
public string TESTSTANDARD { get; set; }
|
|
|
|
//试样加工位置
|
|
[Persistent("SAMPLESTATION"), DisplayName("试样加工位置")]
|
|
public string SAMPLESTATION { get; set; }
|
|
|
|
//试样加工规格
|
|
[Persistent("SMPLSPEC"), DisplayName("试样加工规格")]
|
|
public string SMPLSPEC { get; set; }
|
|
|
|
//方向
|
|
[Persistent("SAMPDIR"), DisplayName("方向")]
|
|
public string SAMPDIR { get; set; }
|
|
|
|
//修约标准
|
|
[Persistent("ROUNDSTD"), DisplayName("修约标准")]
|
|
public string ROUNDSTD { get; set; }
|
|
}
|
|
} |