LgStlBofOptInfo.cs 1013 B

123456789101112131415161718192021222324252627282930313233
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using CoreFS.CA06;
  6. using System.Data;
  7. using System.Collections;
  8. using Core.Mes.Client.Common;
  9. using Core.LgMes.Client.lgServiceMgt;
  10. namespace Core.LgMes.Client.lgBll.lgResMgt
  11. {
  12. public class LgStlBofOptInfo
  13. {
  14. private static lgServiceMgt.LgResService.LgStlBofOptionService stlBofOptionService = new lgServiceMgt.LgResService.LgStlBofOptionService();
  15. /// <summary>
  16. /// 获取当前转炉实绩数据
  17. /// </summary>
  18. /// <param name="param"></param>
  19. /// <returns></returns>
  20. public static DataSet GetStlBofOptinfo(ClientParamWithSqlConditionAndOpenBase param)
  21. {
  22. return stlBofOptionService.GetDataSetForStlBofOption(param);
  23. }
  24. public static DataSet GetJ_StlBofOptinfo(ClientParamWithSqlConditionAndOpenBase param)
  25. {
  26. return stlBofOptionService.GetDataSetForAllStl_bof_optinfo(param);
  27. }
  28. }
  29. }