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