| 12345678910111213141516171819202122 |
- using Core.Mes.Client.Comm.Attribute;
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.PlnSaleOrd.炉计划.Entity
- {
- public class PlnZyZgMEOntity : PlnZyZgMEntity
- {
- private List<PlnZyZgCEntity> ordEntityList;
- public List<PlnZyZgCEntity> OrdEntityList
- {
- get { return ordEntityList; }
- set { ordEntityList = value; }
- }
- }
- }
|