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.

24 lines
470 B
C#

using Newtonsoft.Json;
using SOA.Persistent;
using System;
using System.ComponentModel;
namespace ibk.IPD.Entity.IpdPs
{
[Serializable, Table("GP_SMP_NO")]
[JsonObject]
public class GP_SMP_NO
{
//钢板号
[Persistent("PLATE_NO"), DisplayName("钢板号")]
public string PLATE_NO { get; set; }
//取样号
[Persistent("SMP_NO"), DisplayName("取样号")]
public string SMP_NO { get; set; }
}
}