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.

47 lines
1.1 KiB
C#

5 months ago
using SOA.Persistent;
using System;
using System.ComponentModel;
namespace SlabHandle
{
[Serializable, Table("FB_SLAB_001")]
public class FB_SLAB_001
{
//板坯号
[Persistent("SLAB_NO"), DisplayName("板坯号")]
public string SLAB_NO { get; set; }
//是否选择
[Persistent("TYPE1"), DisplayName("是否选择")]
public string TYPE1 { 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_CD"), DisplayName("录入人")]
public string INS_EMP_CD { get; set; }
//录入原因
[Persistent("IN_RESON"), DisplayName("录入原因")]
public string IN_RESON { get; set; }
////是否预留
//[Persistent("IS_YL"), DisplayName("是否预留")]
//public string IS_YL { get; set; }
}
}