LgLfsReportCollection.cs 906 B

123456789101112131415161718192021222324252627282930313233343536
  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. namespace Core.LgMes.Client.lgBll.lgReport
  10. {
  11. /// <summary>
  12. /// lf 炉报表集合
  13. /// </summary>
  14. public class LgLfsReportCollection
  15. {
  16. private static Core.LgMes.Client.lgServiceMgt.LgReportService.LgLfsReportService lgLfsReportService = new Core.LgMes.Client.lgServiceMgt.LgReportService.LgLfsReportService();
  17. /// <summary>
  18. /// lf 炉操作记录报表
  19. /// </summary>
  20. /// <param name="param"></param>
  21. /// <returns></returns>
  22. ///
  23. public static DataSet returnDsOfLfsOperation(ClientParamWithSqlConditionAndOpenBase param)
  24. {
  25. return lgLfsReportService.returnDsOfLfsOperation(param);
  26. }
  27. }
  28. }