| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- 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
- {
- /// <summary>
- /// 转炉报表数据层类
- /// </summary>
- public class LgLfsReportService : Core.LgMes.Client.lgServiceMgt.BaseService.LgBaseService
- {
-
- public LgLfsReportService()
- {
- }
- /// <summary>
- /// lf 炉操作记录报表
- /// </summary>
- /// <param name="param"></param>
- /// <returns></returns>
- public DataSet returnDsOfLfsOperation(ClientParamWithSqlConditionAndOpenBase param)
- {
- DataSet ds = null;
- try
- {
- string sqlStr = SqlCollection.LfsSqlCollection.returnSqlOfLfs_Operation(param.sqlConditionList);
- ds = base.dbCommond.ExecuteReader(new DbClientParam(sqlStr, param.ob));
- }
- catch
- {
- }
- return ds;
- }
-
-
- }
- }
|