SlmOrdDesignMscJgPlBLL.cs 987 B

12345678910111213141516171819202122232425262728293031
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Core.Mes.Client.Comm.Format;
  6. using Core.Mes.Client.Comm.Tool;
  7. using CoreFS.CA06;
  8. namespace Core.StlMes.Client.SaleOrder.BLL
  9. {
  10. public class SlmOrdDesignMscJgPlBLL
  11. {
  12. private OpeBase _ob;
  13. public SlmOrdDesignMscJgPlBLL(OpeBase ob)
  14. {
  15. _ob = ob;
  16. }
  17. /// <summary>
  18. /// 查询接箍制程
  19. /// </summary>
  20. /// <param name="designMscJgPlEntity"></param>
  21. /// <returns></returns>
  22. public List<SlmOrdDesignMscJgPlEntity> Query(SlmOrdDesignMscJgPlEntity designMscJgPlEntity)
  23. {
  24. List<SlmOrdDesignMscJgPlEntity> designMscJgPlEntityList = EntityHelper.GetData<SlmOrdDesignMscJgPlEntity>(
  25. "com.steering.pss.sale.order.DAL.SlmOrdDesignMscJgPlDAL.query", new object[] { JSONFormat.Format(designMscJgPlEntity) }, _ob);
  26. return designMscJgPlEntityList;
  27. }
  28. }
  29. }