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.
69 lines
2.0 KiB
C#
69 lines
2.0 KiB
C#
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.ComponentModel;
|
|
|
|
using SOA.Persistent;
|
|
namespace ibk.IPD.Entity.IPD_SS
|
|
{
|
|
|
|
[Serializable, Table("TB_OUT_CFG")]
|
|
[JsonObject]
|
|
public class TB_OUT_CFG
|
|
{
|
|
//钢种
|
|
[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; }
|
|
|
|
[Persistent("ORD_WID_MIN"), DisplayName("订单宽度下限")]
|
|
public string ORD_WID_MIN { get; set; }
|
|
|
|
[Persistent("ORD_WID_MAX"), DisplayName("订单宽度上限")]
|
|
public string ORD_WID_MAX { get; set; }
|
|
|
|
[Persistent("ORD_THK_MIN"), DisplayName("订单厚度下限")]
|
|
public string ORD_THK_MIN { get; set; }
|
|
|
|
[Persistent("ORD_THK_MAX"), DisplayName("订单厚度上限")]
|
|
public string ORD_THK_MAX { get; set; }
|
|
|
|
[Persistent("IS_OUT"), DisplayName("是否允许超量")]
|
|
public string IS_OUT { get; set; }
|
|
|
|
[Persistent("IS_SPLATE"), DisplayName("是否允许小尺板")]
|
|
public string IS_SPLATE { get; set; }
|
|
|
|
[Persistent("ORD_CUST_DATE"), DisplayName("交货期偏移量")]
|
|
public string ORD_CUST_DATE { get; set; }
|
|
}
|
|
}
|