CraftOrdDesignMscJgPlStiBLL.cs 1.0 KB

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 CraftOrdDesignMscJgPlStiBLL
  11. {
  12. private OpeBase _ob;
  13. public CraftOrdDesignMscJgPlStiBLL(OpeBase ob)
  14. {
  15. _ob = ob;
  16. }
  17. /// <summary>
  18. /// 查询接箍工序
  19. /// </summary>
  20. /// <param name="designMscJgPlStiEntity"></param>
  21. /// <returns></returns>
  22. public List<CraftOrdDesignMscJgPlStiEntity> Query(CraftOrdDesignMscJgPlStiEntity designMscJgPlStiEntity)
  23. {
  24. List<CraftOrdDesignMscJgPlStiEntity> designMscJgPlStiEntityList = EntityHelper.GetData<CraftOrdDesignMscJgPlStiEntity>(
  25. "com.steering.pss.sale.order.DAL.CraftOrdDesignMscJgPlStiDAL.query", new object[] { JSONFormat.Format(designMscJgPlStiEntity) }, _ob);
  26. return designMscJgPlStiEntityList;
  27. }
  28. }
  29. }