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(); /// /// 获取当前转炉实绩数据 /// /// /// public static DataSet GetStlBofOptinfo(ClientParamWithSqlConditionAndOpenBase param) { return stlBofOptionService.GetDataSetForStlBofOption(param); } public static DataSet GetJ_StlBofOptinfo(ClientParamWithSqlConditionAndOpenBase param) { return stlBofOptionService.GetDataSetForAllStl_bof_optinfo(param); } } }