38 lines
1.1 KiB
C#
38 lines
1.1 KiB
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Web;
|
|||
|
|
using System.Web.Services;
|
|||
|
|
using WMS.Business;
|
|||
|
|
using WMS.Business.RK;
|
|||
|
|
using WMS.Model.RK;
|
|||
|
|
|
|||
|
|
namespace WMS.WebServices
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Web_RF_RK 的摘要说明
|
|||
|
|
/// </summary>
|
|||
|
|
[WebService(Namespace = "http://tempuri.org/")]
|
|||
|
|
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
|
|||
|
|
[System.ComponentModel.ToolboxItem(false)]
|
|||
|
|
// 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消注释以下行。
|
|||
|
|
// [System.Web.Script.Services.ScriptService]
|
|||
|
|
public class Web_RF_RK : System.Web.Services.WebService
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
[WebMethod]
|
|||
|
|
public string HelloWorld()
|
|||
|
|
{
|
|||
|
|
return "Hello World";
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
[WebMethod]
|
|||
|
|
public string Add_MergeCtl(string locId, string newLocid, string oldCtl, string ctl, string STORAGE_ID, string outStand)
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
return IBussFactory<BussAutoRk>.Instance().MergerCtl( locId, newLocid, oldCtl, ctl, STORAGE_ID, outStand);
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|