PlnSteelforfurnaceOEntity.cs 490 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace Core.StlMes.Client.PlnSaleOrd.炼钢计划.entity
  7. {
  8. public class PlnSteelforfurnaceOEntity : PlnSteelforfurnaceEntity
  9. {
  10. private List<PlnSteelforOrdEntity> ordEntityList;
  11. public List<PlnSteelforOrdEntity> OrdEntityList
  12. {
  13. get { return ordEntityList; }
  14. set { ordEntityList = value; }
  15. }
  16. }
  17. }