Admin
2026-01-14 81117ff938bfebc06801017d26176a9ffa4d0731
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_ITaskInfoService/ITaskService.cs
@@ -15,6 +15,7 @@
 *----------------------------------------------------------------*/
#endregion << ç‰ˆ æœ¬ æ³¨ é‡Š >>
using Microsoft.AspNetCore.Mvc;
using SqlSugar;
using System;
using System.Collections.Generic;
@@ -28,6 +29,7 @@
using WIDESEA_Core.BaseServices;
using WIDESEA_Core.Enums;
using WIDESEA_DTO;
using WIDESEA_DTO.Inbound;
using WIDESEA_DTO.Stock;
using WIDESEA_DTO.Task;
using WIDESEA_Model.Models;
@@ -37,5 +39,39 @@
    public interface ITaskService : IService<Dt_Task>
    {
        IRepository<Dt_Task> Repository { get; }
        //任务反馈
        WebResponseContent TaskCompleted(WCSTaskDTO wCSTask);
        //WCS入库获取
        WebResponseContent PalletInboundTask(WCSTaskDTO wCSTask);
        #region MES任务模块
        //空盘回库,入库任务
        ApiResponse AddInStoreDoc(MES_InTask mES_In);
        //出库接口
        ApiResponse AddOutStoreDoc(MES_InTask mES_In);
        //库位调拨接口
        ApiResponse GetLocationByContainer(MES_InTask mES_In);
        //任务查询
        ApiResponse GetTaskInfo([FromBody] MES_InTask mES_In);
        //任务取消接口
        ApiResponse CancelTask([FromBody] MES_InTask mES_In);
        #endregion
    }
}