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.
106 lines
3.0 KiB
C#
106 lines
3.0 KiB
C#
using SOA.Persistent;
|
|
using System;
|
|
using System.ComponentModel;
|
|
|
|
namespace ibk.IPD.Entity.IpdPs
|
|
{
|
|
[Serializable, Table("QP_CERT_SMP")]
|
|
public class QP_CERT_SMP
|
|
{
|
|
//生产厂
|
|
[Persistent("PLT"), DisplayName("生产厂")]
|
|
public string PLT { get; set; }
|
|
|
|
//试样号
|
|
[Persistent("SMP_NO"), DisplayName("试样号")]
|
|
public string SMP_NO { get; set; }
|
|
|
|
//钢板号
|
|
[Persistent("PLATE_NO"), DisplayName("钢板号")]
|
|
public string PLATE_NO { get; set; }
|
|
|
|
//进程状态
|
|
[Persistent("PROC_CD"), DisplayName("进程状态")]
|
|
public string PROC_CD { get; set; }
|
|
|
|
//厚
|
|
[Persistent("THK"), DisplayName("厚")]
|
|
public Decimal THK { get; set; }
|
|
|
|
//宽
|
|
[Persistent("WID"), DisplayName("宽")]
|
|
public Decimal WID { get; set; }
|
|
|
|
//长
|
|
[Persistent("LEN"), DisplayName("长")]
|
|
public Decimal LEN { get; set; }
|
|
|
|
//订单编号
|
|
[Persistent("ORD_NO"), DisplayName("订单编号")]
|
|
public string ORD_NO { get; set; }
|
|
|
|
//项次
|
|
[Persistent("ORD_ITEM"), DisplayName("项次")]
|
|
public string ORD_ITEM { get; set; }
|
|
|
|
|
|
//订单材/余材
|
|
[Persistent("ORD_FL"), DisplayName("订单材/余材")]
|
|
public string ORD_FL { get; set; }
|
|
|
|
|
|
//重量
|
|
[Persistent("WGT"), DisplayName("重量")]
|
|
public Decimal WGT { get; set; }
|
|
|
|
//标准号
|
|
[Persistent("STDSPEC_NAME"), DisplayName("标准号")]
|
|
public string STDSPEC_NAME { get; set; }
|
|
|
|
//清空原因
|
|
[Persistent("CUT_FL"), DisplayName("清空原因")]
|
|
public string CUT_FL { get; set; }
|
|
|
|
//委托日期
|
|
[Persistent("SMP_SEND_DATE"), DisplayName("委托日期")]
|
|
public string SMP_SEND_DATE { get; set; }
|
|
|
|
//质保书日期
|
|
[Persistent("CERT_DATE"), DisplayName("质保书日期")]
|
|
public int CERT_DATE { get; set; }
|
|
|
|
//编制人员
|
|
[Persistent("CERT_EMP"), DisplayName("编制人员")]
|
|
public string CERT_EMP { 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("LST_PGM"), DisplayName("最终程序")]
|
|
public string LST_PGM { get; set; }
|
|
|
|
//表面等级
|
|
[Persistent("SURF_GRD"), DisplayName("表面等级")]
|
|
public string SURF_GRD { get; set; }
|
|
|
|
//缺陷
|
|
|
|
[Persistent("DEFECT"), DisplayName("缺陷")]
|
|
public string DEFECT { get; set; }
|
|
|
|
//委托人
|
|
[Persistent("SEND_EMP"), DisplayName("委托人")]
|
|
public string SEND_EMP { get; set; }
|
|
|
|
}
|
|
} |