| 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;
- namespace Core.LgMes.Client.lgBll.lgReport
- {
-
- /// <summary>
- /// lf 炉报表集合
- /// </summary>
- public class LgLfsReportCollection
- {
- private static Core.LgMes.Client.lgServiceMgt.LgReportService.LgLfsReportService lgLfsReportService = new Core.LgMes.Client.lgServiceMgt.LgReportService.LgLfsReportService();
- /// <summary>
- /// lf 炉操作记录报表
- /// </summary>
- /// <param name="param"></param>
- /// <returns></returns>
- ///
-
- public static DataSet returnDsOfLfsOperation(ClientParamWithSqlConditionAndOpenBase param)
- {
- return lgLfsReportService.returnDsOfLfsOperation(param);
-
- }
- }
- }
|