PlnGxJgxMOEntity.cs 419 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Core.StlMes.Client.PlnSaleOrd.entity
  6. {
  7. public class PlnGxJgxMOEntity:PlnGxJgxMEntity
  8. {
  9. private List<PlnOrderJgxEntity> orderJgxList;
  10. public List<PlnOrderJgxEntity> OrderJgxList
  11. {
  12. get { return orderJgxList; }
  13. set { orderJgxList = value; }
  14. }
  15. }
  16. }