You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
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();
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取任务分配列表
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="carrierId">船公司Id(可选)</param>
|
|
|
|
|
Task<DataResult<TaskAllocationtSetQueryListDto>> GetList(long? carrierId);
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 保存任务分配设置
|
|
|
|
|
/// </summary>
|
|
|
|
|
Task<DataResult> Save(TaskAllocationtSetSaveDto saveDto);
|
|
|
|
|
}
|
|
|
|
|
}
|