| 1234567891011121314151617181920212223242526 |
- 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
- {
- public class LgVdsReportCollection
- {
- private static Core.LgMes.Client.lgServiceMgt.LgReportService.LgVdsReportService lgVdsReportService = new Core.LgMes.Client.lgServiceMgt.LgReportService.LgVdsReportService();
- /// <summary>
- /// 获取vd 炉操作记录
- /// </summary>
- /// <param name="param"></param>
- /// <returns></returns>
- public static DataSet returnDsOfVdsOperationReport(ClientParamWithSqlConditionAndOpenBase param)
- {
- return lgVdsReportService.returnDsOfVdsOperationReport(param);
- }
- }
- }
|