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.
61 lines
1.6 KiB
C#
61 lines
1.6 KiB
C#
using Newtonsoft.Json;
|
|
using SOA.Persistent;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ibk.IPD.Entity.IPD_MR.Finishing
|
|
{
|
|
[Serializable]
|
|
[Table("SHEAR_SPECI")]
|
|
[JsonObject]
|
|
public class SHEAR_SPECI
|
|
{
|
|
//主键ID
|
|
[Persistent("PK"), DisplayName("主键ID")]
|
|
public string PK { get; set; }
|
|
|
|
|
|
[Persistent("STEEL_GRADE"), DisplayName("钢种")]
|
|
public string STEEL_GRADE { get; set; }
|
|
|
|
|
|
[Persistent("SHEAR_CLASS"), DisplayName("剪切种类")]
|
|
public string SHEAR_CLASS { get; set; }
|
|
|
|
|
|
[Persistent("SHEAR_QUANTI"), DisplayName("剪切量")]
|
|
public string SHEAR_QUANTI { get; set; }
|
|
|
|
|
|
[Persistent("REMARK"), DisplayName("备注")]
|
|
public string REMARK { get; set; }
|
|
|
|
|
|
[Persistent("SHEAR_LINE"), DisplayName("剪切线")]
|
|
public string SHEAR_LINE { 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_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; }
|
|
}
|
|
}
|