| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- 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 LgVdsReportService : Core.LgMes.Client.lgServiceMgt.BaseService.LgBaseService
- {
-
- public LgVdsReportService()
- {
-
- }
- /// <summary>
- /// 获取vd 炉操作记录
- /// </summary>
- /// <param name="param"></param>
- /// <returns></returns>
- public DataSet returnDsOfVdsOperationReport(ClientParamWithSqlConditionAndOpenBase param)
- {
- DataSet ds = new DataSet();
- try
- {
-
- string sqlStr = SqlCollectionVds.VdsReportSqlCollection.returnSqlOfVdsReportDailyOperation(param.sqlConditionList);
- ds = base.dbCommond.ExecuteReader(new DbClientParam(sqlStr, param.ob));
- }
- catch
- {
- }
- return ds;
- }
- }
- }
|