| 123456789101112131415161718192021222324252627282930 |
- using Core.Mes.Client.Comm.Server;
- using CoreFS.CA06;
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Text;
- namespace Core.StlMes.Client.YdmPipeManage.Entity
- {
- public class comm
- {
- /// <summary>
- /// 查询结转控制标识
- /// </summary>
- /// <param name="Code"></param>
- /// <param name="ob"></param>
- /// <returns></returns>
- public static string GetState(string Code, OpeBase ob)
- {
- string State = "";
- DataTable dt = ServerHelper.GetData("com.steering.pss.ydm.pipemanage.FrmRedChong.getState", new Object[] { Code }, ob);
- if (dt != null && dt.Rows.Count > 0)
- {
- State = dt.Rows[0][0].ToString();
- }
- return State;
- }
- }
- }
|