BaoKai_202508-Wms-Jingwang..../WMS.WebServices/Web_RF_RK.asmx.cs
2025-08-24 09:35:55 +08:00

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);
}
}
}