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
547 B
C#
24 lines
547 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Newtonsoft.Json;
|
|
using SOA.Persistent;
|
|
|
|
namespace ibk.IPD.Service.IPD_SS
|
|
{
|
|
[Serializable, Table("SLAB_DATE")]
|
|
[JsonObject]
|
|
public class SLAB_DATE
|
|
{
|
|
//板坯号
|
|
[Persistent("MAT_NO"), DisplayName("板坯号")]
|
|
public string MAT_NO { get; set; }
|
|
|
|
//替代时间
|
|
[Persistent("INS_DATE"), DisplayName("替代时间")]
|
|
public string INS_DATE { get; set; }
|
|
}
|
|
}
|