| | |
| | | using Microsoft.AspNetCore.Mvc; |
| | | using WIDESEAWCS_Core; |
| | | using WIDESEAWCS_Core.BaseController; |
| | | using WIDESEAWCS_DTO.TaskInfo; |
| | | using WIDESEAWCS_ITaskInfoService; |
| | | using WIDESEAWCS_Model.Models; |
| | | |
| | |
| | | { |
| | | [Route("api/Task_Hty")] |
| | | [ApiController] |
| | | public class AgvStationController : ApiBaseController<ITask_HtyService, Dt_Task_hty> |
| | | public class AgvStationController : ApiBaseController<ITask_HtyService, Dt_Task_Hty> |
| | | { |
| | | private readonly IHttpContextAccessor _httpContextAccessor; |
| | | public AgvStationController(ITask_HtyService service, IHttpContextAccessor httpContextAccessor) : base(service) |
| | | { |
| | | _httpContextAccessor = httpContextAccessor; |
| | | } |
| | | |
| | | [HttpGet, Route("fifteenTotal_quantityndex"), AllowAnonymous] |
| | | public WebResponseContent fifteenTotal_quantityndex() |
| | | { |
| | | return Service.fifteenTotal_quantityndex(); |
| | | } |
| | | } |
| | | } |