| 123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.PlnSaleOrd.entity
- {
- public class PlnGxRclMOEntity:PlnGxRclMEntity
- {
- List<PlnOrderRclEntity> orderRclList;
- public List<PlnOrderRclEntity> OrderRclList
- {
- get { return orderRclList; }
- set { orderRclList = value; }
- }
- }
- }
|