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.
64 lines
1.4 KiB
C#
64 lines
1.4 KiB
C#
//using System;
|
|
//using System.Collections.Generic;
|
|
//using System.Linq;
|
|
//using System.Text;
|
|
//using System.Threading.Tasks;
|
|
|
|
//namespace ibk.IPD.Entity.IPD_SS
|
|
//{
|
|
// internal class TB_C3_STLGRD_SEL
|
|
// {
|
|
// }
|
|
//}
|
|
|
|
|
|
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_BTF_STLGRD")]
|
|
[JsonObject]
|
|
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; }
|
|
|
|
|
|
|
|
}
|
|
}
|
|
|