23 lines
505 B
C#
23 lines
505 B
C#
using ApiTool;
|
|
using WcsMain.Business.CommonAction;
|
|
using WcsMain.Common;
|
|
using WcsMain.ExtendMethod;
|
|
using WcsMain.WcsAttribute.AutoFacAttribute;
|
|
|
|
namespace WcsMain.Plugins;
|
|
|
|
|
|
/// <summary>
|
|
/// AGV 接口工具
|
|
/// </summary>
|
|
[Component]
|
|
public class AGVWebApiPost : WebApiPost
|
|
{
|
|
public AGVWebApiPost(ApiResponseAction apiResponseAction)
|
|
{
|
|
SetResponseAction(apiResponseAction.ApiResponse);
|
|
SetBaseUrl(CommonData.AppApiBaseInfos.GetAddress("AGVBaseApiAddress") ?? "");
|
|
}
|
|
|
|
}
|