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.
42 lines
1.1 KiB
C#
42 lines
1.1 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
|
|
{
|
|
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_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; }
|
|
}
|
|
}
|