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.

45 lines
1.2 KiB
C#

using SOA.Persistent;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SlabHandle.Enity
{
[Serializable, Table("TB_BTF_STLGRD")]
public class TB_BTF_STLGRD
{
//钢种
[Persistent("STDSPEC"), DisplayName("标准")]
public string STDSPEC { get; set; }
//钢种组
[Persistent("STDSPEC_NAME_CHN"), DisplayName("标准名")]
public string STDSPEC_NAME_CHN { get; set; }
//钢种描述
[Persistent("STDSPEC_STLGRD"), DisplayName("标准钢种")]
public string STDSPEC_STLGRD { get; set; }
//工厂
[Persistent("PLT"), DisplayName("工厂")]
public string PLT { get; set; }
//录入人员
[Persistent("INS_EMP"), DisplayName("录入时间")]
public string INS_EMP { get; set; }
//录入日期
[Persistent("INS_DATE"), DisplayName("录入日期")]
public string INS_DATE { get; set; }
//录入时间
[Persistent("INS_TIME"), DisplayName("录入时间")]
public string INS_TIME { get; set; }
}
}