| 12345678910111213141516171819202122232425262728293031323334353637 |
- 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
- {
- /// <summary>
- ///
- /// </summary>
- public class CommonAtomStlRhsMgt
- {
- /// <summary>
- /// 获取RH吹氧信息
- /// </summary>
- /// <param name="sqlConditon"></param>
- /// <returns></returns>
- public static DataSet returnDsOfStl_Rhs_Oxygenblowing(ClientParamWithSqlConditionAndOpenBase param)
- {
- DataSet ds = new DataSet();
- try
- {
- ds = DbCommon.returnDataSet(SqlCollection.RhsSqlCollection.returnSqlOfStl_Rhs_Oxygenblowing(param.sqlCondition),param.ob);
- }
- catch
- {
- }
- return ds;
- }
- }
- }
|