LgVdsReportCollection.cs 819 B

1234567891011121314151617181920212223242526
  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. public class LgVdsReportCollection
  12. {
  13. private static Core.LgMes.Client.lgServiceMgt.LgReportService.LgVdsReportService lgVdsReportService = new Core.LgMes.Client.lgServiceMgt.LgReportService.LgVdsReportService();
  14. /// <summary>
  15. /// 获取vd 炉操作记录
  16. /// </summary>
  17. /// <param name="param"></param>
  18. /// <returns></returns>
  19. public static DataSet returnDsOfVdsOperationReport(ClientParamWithSqlConditionAndOpenBase param)
  20. {
  21. return lgVdsReportService.returnDsOfVdsOperationReport(param);
  22. }
  23. }
  24. }