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.
17 lines
452 B
C#
17 lines
452 B
C#
using DS.Module.Core;
|
|
using DS.Module.DjyServiceStatus;
|
|
using DS.WMS.Core.TaskPlat.Dtos;
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
namespace DS.WMS.Core.TaskPlat.Interface
|
|
{
|
|
public interface ITaskManageBCService
|
|
{
|
|
/// <summary>
|
|
/// 通过任务主键获取BC详情
|
|
/// </summary>
|
|
/// <param name="taskId">BC任务主键</param>
|
|
Task<DataResult<TaskManageOrderResultDto>> GetInfoByTaskId(long taskId);
|
|
}
|
|
}
|