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
931 B
C#
42 lines
931 B
C#
using Newtonsoft.Json;
|
|
using SOA.Persistent;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ibk.IPD.Entity.IPD_PS
|
|
{
|
|
[Serializable]
|
|
|
|
[JsonObject]
|
|
public class TB_SlabOrdFl
|
|
{
|
|
//炉号
|
|
[Persistent("SLAB_NO"), DisplayName("板坯号")]
|
|
public string SLAB_NO { get; set; }
|
|
|
|
//更新人员
|
|
[Persistent("ORD_FL"), DisplayName("替代状态")]
|
|
public string ORD_FL { get; set; }
|
|
|
|
|
|
//钢种
|
|
[Persistent("STLGRD"), DisplayName("钢种")]
|
|
public string STLGRD { get; set; }
|
|
|
|
|
|
//规格
|
|
[Persistent("SPECIFICATION"), DisplayName("规格")]
|
|
public string SPECIFICATION { get; set; }
|
|
|
|
|
|
//仓库
|
|
[Persistent("CUR_INV"), DisplayName("仓库")]
|
|
public string CUR_INV { get; set; }
|
|
|
|
}
|
|
}
|