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.

50 lines
1.2 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using Newtonsoft.Json;
using SOA.Persistent;
namespace ibk.IPD.Service.IPD_SS
{
[Serializable, Table("TB_STLGRD_CHMC")]
[JsonObject]
public class TB_STLGRD_CHMC
{
//钢种
[Persistent("STLGRD"), DisplayName("钢种")]
public string STLGRD { get; set; }
//钢种组
[Persistent("STLGRD_GRP"), DisplayName("钢种组")]
public string STLGRD_GRP { get; set; }
//钢种描述
[Persistent("STEEL_GRD_DETAIL"), DisplayName("钢种描述")]
public string STEEL_GRD_DETAIL { 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; }
}
}