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.
39 lines
1014 B
C#
39 lines
1014 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using Newtonsoft.Json;
|
|
using SOA.Persistent;
|
|
namespace SlabHandle
|
|
{
|
|
//轧件信息
|
|
public class TB_CRU_PIE
|
|
{
|
|
//编号
|
|
[Persistent("CRU_CD"), DisplayName("编号")]
|
|
public string CRU_CD { get; set; }
|
|
|
|
//板坯号
|
|
[Persistent("SLAB_NO"), DisplayName("板坯号")]
|
|
public string SLAB_NO { get; set; }
|
|
|
|
//订单厚度
|
|
[Persistent("ORD_THK"), DisplayName("订单厚度")]
|
|
public string ORD_THK { get; set; }
|
|
|
|
//订单重量
|
|
[Persistent("ORD_WGT"), DisplayName("单重量")]
|
|
public string ORD_WGT { get; set; }
|
|
|
|
//钢种
|
|
[Persistent("STLGRD"), DisplayName("钢种")]
|
|
public string STLGRD { get; set; }
|
|
|
|
//虚拟钢板集合
|
|
[Persistent("TB_PLATE_FIC"), DisplayName("虚拟钢板集合")]
|
|
public List<TB_PLATE_FIC> CRU_PIEs { get; set; }
|
|
|
|
}
|
|
}
|