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.

21 lines
516 B
C#

using SOA.Persistent;
using System;
using System.ComponentModel;
namespace SinglePlateHandle.Enity
{
[Serializable, Table("TB_STOCK")]
public class TB_STOCK
{
//1970.1.1 8:00:00 至当前时间的毫秒数
[Persistent("STOCK_DATE"), DisplayName("1970.1.1 8:00:00 至当前时间的毫秒数")]
public string STOCK_DATE { get; set; }
//钢板号
[Persistent("PLATE_CNT"), DisplayName("余材库存数")]
public string PLATE_CNT { get; set; }
}
}