LgCasReportService.cs 1.0 KB

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. using Core.LgMes.Client.lgDbMgt;
  10. namespace Core.LgMes.Client.lgServiceMgt.LgReportService
  11. {
  12. public class LgCasReportService : Core.LgMes.Client.lgServiceMgt.BaseService.LgBaseService
  13. {
  14. /// <summary>
  15. ///获取Cas的操作记录
  16. /// </summary>
  17. /// <param name="param"></param>
  18. /// <returns></returns>
  19. public DataSet returnDsOfCcmThreeOperationReport(ClientParamWithSqlConditionAndOpenBase param)
  20. {
  21. DataSet ds = new DataSet();
  22. try
  23. {
  24. string sqlStr = Core.LgMes.Client.lgServiceMgt.LgSqlCollection.LgRes.LgCasSql.LgCasResSql.returnSqlOfStl_Cas_Optinfo(param.sqlCondition);
  25. ds = base.dbCommond.ExecuteReader(new DbClientParam(sqlStr, param.ob));
  26. }
  27. catch
  28. {
  29. }
  30. return ds;
  31. }
  32. }
  33. }