1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using HNWD.Pregrant.WebService;
- using HNWD.Pregrant.Model;
- using System.Text;
- using HNWD.Pregrant.DataAccess;
- using HNWD.Pregrant.Common;
- using HNWD.Pregrant.BusinessLogic;
- using System.IO;
- namespace HNWD.Pregrant.WebService.MgrCSharp
- {
- public partial class SetWD_StaffInfo : PageBase
- {
- protected void Page_Load(object sender, EventArgs e)
- {
- string actionflag = this.GetValueByKey("actionflag");
- string data = this.GetValueByKey("data");
- string staffid = this.GetValueByKey("staffid");
- if (string.IsNullOrEmpty(actionflag))
- {
- this.ResponseDefaultError();
- return;
- }
- WD_StaffInfoBusinessLogic wd_StaffInfoBusinessLogic = new WD_StaffInfoBusinessLogic(staffid);
- if (!wd_StaffInfoBusinessLogic.bSuccess)
- {
- Response.Write(JsonHelper.SerializeWithSuffix(wd_StaffInfoBusinessLogic.Message));
- return;
- }
- if (actionflag.ToLower() == "query")
- {
- Response.Write(JsonHelper.SerializeWithSuffix(wd_StaffInfoBusinessLogic.Query(staffid)));
- return;
- }
- if (actionflag.ToLower() == "business")
- {
- Response.Write(JsonHelper.SerializeWithSuffix(wd_StaffInfoBusinessLogic.Business(data)));
- return;
- }
- }
- }
- }
|