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 SlabHandle.Enity { [Serializable, Table("FP_SLAB_ADD")] [JsonObject] public class FP_SLAB_ADD { //订单号 [Persistent("SLAB_NO"), DisplayName("板坯号")] public string SLAB_NO { get; set; } //订单序列号 [Persistent("SLAB_TYPE"), DisplayName("板坯类型标注")] public string SLAB_TYPE { get; set; } } }