| 1234567891011121314151617181920 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.PlnSaleOrd.entity
- {
- public class PlnGxJgxMOEntity:PlnGxJgxMEntity
- {
- private List<PlnOrderJgxEntity> orderJgxList;
- public List<PlnOrderJgxEntity> OrderJgxList
- {
- get { return orderJgxList; }
- set { orderJgxList = value; }
- }
-
- }
- }
|