| 12345678910111213141516171819202122232425262728293031323334 |
- 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
- {
- /// <summary>
- /// 获取铁运进铁数据
- /// </summary>
- /// <returns></returns>
- 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;
- }
- }
- }
|