12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using HNWD.Pregrant.Model;
- using HNWD.Pregrant.Common;
- using System.Text;
- using HNWD.Pregrant.DataAccess;
- using HNWD.Pregrant.WebService;
- using HNWD.Pregrant.BusinessLogic;
- namespace HNWD.Pregrant.WebService.WDFJ_I
- {
- /// <summary>
- /// 获取机器控制参数数据
- /// </summary>
- public partial class callingBed_getmachinedata : PageBase
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- WD_PartInfoBusinessLogic wd_PartInfoBusinessLogic = new WD_PartInfoBusinessLogic();
- if(!wd_PartInfoBusinessLogic.Operate())
- {
- this.ResponseDefaultError(PromptingMessage.Error_PartInfo);
- return;
- }
- Response.Write(JsonHelper.SerializeWithSuffix(wd_PartInfoBusinessLogic.wd_PartInfo));
-
- }
- }
- }
|