| 123456789101112131415161718192021222324252627282930313233 |
- 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.lgServiceMgt;
- namespace Core.LgMes.Client.lgBll.lgResMgt
- {
- public class LgStlBofOptInfo
- {
- private static lgServiceMgt.LgResService.LgStlBofOptionService stlBofOptionService = new lgServiceMgt.LgResService.LgStlBofOptionService();
- /// <summary>
- /// 获取当前转炉实绩数据
- /// </summary>
- /// <param name="param"></param>
- /// <returns></returns>
- public static DataSet GetStlBofOptinfo(ClientParamWithSqlConditionAndOpenBase param)
- {
- return stlBofOptionService.GetDataSetForStlBofOption(param);
- }
- public static DataSet GetJ_StlBofOptinfo(ClientParamWithSqlConditionAndOpenBase param)
- {
- return stlBofOptionService.GetDataSetForAllStl_bof_optinfo(param);
- }
-
- }
- }
|