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