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.
45 lines
1.4 KiB
C#
45 lines
1.4 KiB
C#
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public interface ITaskManageService
|
|
{
|
|
/// <summary>
|
|
/// 创建任务
|
|
/// </summary>
|
|
/// <param name="info">任务详情</param>
|
|
/// <returns>返回回执</returns>
|
|
Task<TaskManageOrderResultDto> CreateTaskJob(TaskManageOrderMessageInfo info);
|
|
|
|
/// <summary>
|
|
/// 获取查询参数
|
|
/// </summary>
|
|
/// <param name="ParaType">参数类型 STATUS-任务状态;TASK_TYPE-任务类型;SOURCE-任务来源</param>
|
|
/// <returns>返回回执</returns>
|
|
Task<TaskManageOrderResultDto> GetParaInfo(string ParaType);
|
|
|
|
/// <summary>
|
|
/// 获取登陆人相关的任务统计信息
|
|
/// </summary>
|
|
/// <param name="isReCalc">是否强制计算</param>
|
|
/// <returns>返回回执</returns>
|
|
Task<TaskUserStatResultInfo> GetCurrentTotalStat(bool isReCalc = false);
|
|
|
|
/// <summary>
|
|
/// 任务台账查询
|
|
/// </summary>
|
|
/// <param name="QuerySearch">任务台账查询请求</param>
|
|
/// <returns>返回结果</returns>
|
|
Task<dynamic> GetPageAsync(QueryTaskManageDto QuerySearch);
|
|
}
|
|
}
|