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.

56 lines
1.3 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using SOA.Persistent;
namespace SlabHandle
{
[Serializable, Table("EP_GRD_GROUP")]
public class EP_GRD_GROUP
{
//钢种组
[Persistent("GRD_GROUP"), DisplayName("钢种组")]
public string GRD_GROUP { get; set; }
//钢种
[Persistent("STLGRD"), DisplayName("钢种")]
public string STLGRD { 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; }
}
}