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.
26 lines
559 B
C#
26 lines
559 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; }
|
|
}
|
|
}
|