This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
using DS.Module.Core;
using DS.WMS.Core.TaskPlat.Dtos;
using DS.WMS.Core.TaskPlat.Entity;
namespace DS.WMS.Core.TaskPlat.Interface
{
public interface ITaskAllocationService
/// <summary>
/// 获取任务分配列表中已存在的船公司列表(用于查询)
/// </summary>
Task<DataResult<List<CarrierInfoDto>>> GetContainsCarrierList();
/// 获取任务分配列表
/// <param name="carrierId">船公司Id(可选)</param>
Task<DataResult<TaskAllocationtSetQueryListDto>> GetList(long? carrierId);
/// 保存任务分配设置
Task<DataResult> Save(TaskAllocationtSetSaveDto saveDto);
}