using Estsh.Client.Base; namespace Estsh.Client.StepLibrary { public class ModifyBindinginFormation : StepBase { private StepLibraryAPP _app = null; int _terminalID = 0; string _stationType = ""; string _SN = ""; /// /// 执行工步操作 /// /// 执行结果 public override bool Do() { _app = new StepLibraryAPP(httpClient); Action(this, new EventArgs()); _SN = Context["serial_number"].ToString(); _terminalID = Convert.ToInt32(Context["terminal_id"].ToString()); _stationType = Convert.ToString(Context["station_type"].ToString()); _app.setBindinginFormation(_SN, _terminalID); Complate(this, new EventArgs()); return base.Do(); } private void InitializeComponent() { this.SuspendLayout(); // // ModifyBindinginFormation // this.Name = "ModifyBindinginFormation"; this.ResumeLayout(false); } } }