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.
87 lines
2.1 KiB
C#
87 lines
2.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
|
|
{
|
|
[Serializable, Table("CP_NISCO_CHMC_SL")]
|
|
public class CP_NISCO_CHMC_SL
|
|
{
|
|
//钢种
|
|
[Persistent("STLGRD"), DisplayName("钢种")]
|
|
public string STLGRD { get; set; }
|
|
|
|
|
|
//钢种描述
|
|
[Persistent("STEEL_GRD_DETAIL"), DisplayName("钢种描述")]
|
|
public string STEEL_GRD_DETAIL { get; set; }
|
|
|
|
|
|
//优先顺序
|
|
[Persistent("STL_SEQ"), DisplayName("优先顺序")]
|
|
public int STL_SEQ { get; set; }
|
|
|
|
|
|
//替代标准
|
|
[Persistent("STDSPEC"), DisplayName("替代标准")]
|
|
public string STDSPEC { get; set; }
|
|
|
|
|
|
//厚度最小 >
|
|
[Persistent("THK_MIN"), DisplayName("厚度最小 >")]
|
|
public Decimal THK_MIN { get; set; }
|
|
|
|
|
|
//厚度最大 <=
|
|
[Persistent("THK_MAX"), DisplayName("厚度最大 <=")]
|
|
public Decimal THK_MAX { 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; }
|
|
|
|
|
|
[Persistent("UPD_DATE"), DisplayName("")]
|
|
public string UPD_DATE { get; set; }
|
|
|
|
|
|
[Persistent("UPD_TIME"), DisplayName("")]
|
|
public string UPD_TIME { get; set; }
|
|
|
|
|
|
[Persistent("UPD_EMP"), DisplayName("")]
|
|
public string UPD_EMP { get; set; }
|
|
|
|
|
|
//是否在用
|
|
[Persistent("STLGRD_FL"), DisplayName("是否在用")]
|
|
public string STLGRD_FL { get; set; }
|
|
|
|
|
|
//轧制工厂代码
|
|
[Persistent("ZZ_PLT"), DisplayName("轧制工厂代码")]
|
|
public string ZZ_PLT { get; set; }
|
|
|
|
|
|
//轧制工厂简称
|
|
[Persistent("ZZ_PLT_DESP"), DisplayName("轧制工厂简称")]
|
|
public string ZZ_PLT_DESP { get; set; }
|
|
|
|
//分类
|
|
[Persistent("CLASS_FL"), DisplayName("分类")]
|
|
public string CLASS_FL { get; set; }
|
|
}
|
|
}
|