| 1234567891011121314151617181920212223 |
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.PlnSaleOrd.炼钢计划.entity
- {
- public class PlnSteelforfurnaceOEntity : PlnSteelforfurnaceEntity
- {
- private List<PlnSteelforOrdEntity> ordEntityList;
- public List<PlnSteelforOrdEntity> OrdEntityList
- {
- get { return ordEntityList; }
- set { ordEntityList = value; }
- }
-
- }
- }
|