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.LgResService { public class LgStlMisImportironService : lgServiceMgt.BaseService.LgBaseService { /// /// 获取铁运进铁数据 /// /// public DataSet GetStlMisImportiron(ClientParamWithSqlConditionAndOpenBase param) { DataSet ds = new DataSet(); string sqlStr = ""; try { sqlStr = LgSqlCollection.LgRes.LgMisSql.LgMisSql001.GetSqlOfStl_Mis_Importiron(param.sqlCondition); ds = base.dbCommond.ExecuteReader(new DbClientParam(sqlStr, param.ob)); } catch { } return ds; } } }