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.
45 lines
1.1 KiB
C#
45 lines
1.1 KiB
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("TB_SLAB_STAT_C1")]
|
|
[JsonObject]
|
|
public class TB_SLAB_STAT_C1
|
|
{
|
|
//板坯号
|
|
[Persistent("SLAB_NO"), DisplayName("板坯号")]
|
|
public string SLAB_NO { get; set; }
|
|
|
|
|
|
//分组数
|
|
[Persistent("GRP_CNT"), DisplayName("分组数")]
|
|
public decimal? GRP_CNT { get; set; }
|
|
|
|
|
|
//替代日期
|
|
[Persistent("SUB_DATE"), DisplayName("替代日期")]
|
|
public string SUB_DATE { get; set; }
|
|
|
|
|
|
//原订单数
|
|
[Persistent("GRP_CNT_JZ"), DisplayName("原订单数")]
|
|
public decimal? GRP_CNT_JZ { get; set; }
|
|
|
|
//备注
|
|
[Persistent("REMARK"), DisplayName("备注")]
|
|
public string REMARK { get; set; }
|
|
|
|
//结果数
|
|
[Persistent("RESULT_CNT"), DisplayName("结果数")]
|
|
public decimal? RESULT_CNT { get; set; }
|
|
|
|
}
|
|
}
|