| 123456789101112131415161718192021222324252627282930313233343536 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using CoreFS.CA06;
- using System.Data;
- using System.Collections;
- using Core.Mes.Client.Common;
- using Core.LgMes.Client.lgDbMgt;
- namespace Core.LgMes.Client.lgServiceMgt.LgReportService
- {
- public class LgCasReportService : Core.LgMes.Client.lgServiceMgt.BaseService.LgBaseService
- {
- /// <summary>
- ///获取Cas的操作记录
- /// </summary>
- /// <param name="param"></param>
- /// <returns></returns>
- public DataSet returnDsOfCcmThreeOperationReport(ClientParamWithSqlConditionAndOpenBase param)
- {
- DataSet ds = new DataSet();
- try
- {
- string sqlStr = Core.LgMes.Client.lgServiceMgt.LgSqlCollection.LgRes.LgCasSql.LgCasResSql.returnSqlOfStl_Cas_Optinfo(param.sqlCondition);
- ds = base.dbCommond.ExecuteReader(new DbClientParam(sqlStr, param.ob));
- }
- catch
- {
- }
- return ds;
- }
- }
- }
|