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.
31 lines
912 B
C#
31 lines
912 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application.Service.TaskManagePlat.Interface
|
|
{
|
|
/// <summary>
|
|
/// 重要提醒任务
|
|
/// </summary>
|
|
public interface ITaskCautionNoticeService
|
|
{
|
|
/// <summary>
|
|
/// 获取重要任务详情
|
|
/// </summary>
|
|
/// <param name="taskPkId">重要提醒任务主键</param>
|
|
/// <returns>返回详情</returns>
|
|
Task<TaskCautionNoticeShowDto> GetInfoByTaskId(string taskPkId);
|
|
|
|
|
|
/// <summary>
|
|
/// 触发推送消息
|
|
/// </summary>
|
|
/// <param name="taskPKId">重要提醒任务主键</param>
|
|
/// <param name="tenantId">租户ID</param>
|
|
/// <returns>返回回执</returns>
|
|
Task<TaskManageOrderResultDto> TriggerSendNotice(string taskPKId, long tenantId);
|
|
}
|
|
}
|