2024-11-14 12:06:40 +08:00
|
|
|
|
using ApiTool;
|
2024-11-15 11:37:55 +08:00
|
|
|
|
using WcsMain.ApiClient.General;
|
2024-11-14 12:06:40 +08:00
|
|
|
|
using WcsMain.Common;
|
|
|
|
|
|
using WcsMain.ExtendMethod;
|
2024-11-15 11:37:55 +08:00
|
|
|
|
using WcsMain.Constant.WcsAttribute.AutoFacAttribute;
|
2024-11-14 12:06:40 +08:00
|
|
|
|
|
2024-11-15 11:37:55 +08:00
|
|
|
|
namespace WcsMain.ApiClient.Shuttle;
|
2024-11-14 12:06:40 +08:00
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 四向车库接口请求
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[Component]
|
2024-11-15 11:37:55 +08:00
|
|
|
|
public class ShuttleBaseWebApi : WebApiPost
|
2024-11-14 12:06:40 +08:00
|
|
|
|
{
|
2024-11-15 11:37:55 +08:00
|
|
|
|
public ShuttleBaseWebApi(ApiResponseAction apiResponseAction)
|
2024-11-14 12:06:40 +08:00
|
|
|
|
{
|
|
|
|
|
|
SetResponseAction(apiResponseAction.ApiResponse);
|
|
|
|
|
|
SetBaseUrl(CommonData.AppApiBaseInfos.GetAddress("ContainerBaseApiAddress") ?? "");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|