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.
26 lines
659 B
C#
26 lines
659 B
C#
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
|
|
{
|
|
public class TB_PLATE_ORDGRP
|
|
{
|
|
//订单号
|
|
[Persistent("ORD_NO"), DisplayName("订单号")]
|
|
public string ORD_NO { get; set; }
|
|
|
|
//订单序列号
|
|
[Persistent("ORD_ITEM"), DisplayName("订单序列号")]
|
|
public string ORD_ITEM { get; set; }
|
|
|
|
//虚拟钢板集合
|
|
[Persistent("CRU_PIEs"), DisplayName("虚拟钢板集合")]
|
|
public List<TB_PLATE_FIC> CRU_PIEs { get; set; }
|
|
}
|
|
}
|