using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace Api.SignToken
{
///
/// 配送物品计划
///
public interface IDistributionPlanService
{
///
/// 添加计划任务 - 来源 HangfireDistributionPlanController
///
///
///
Task AddDistriWorkOrderPlanAsync(string planid);
///
/// 自动定时计划 - 自动分配
///
///
///
Task SaveAutoAssignAsync(int wotype);
///
/// 超时系统评价工单
///
///
///
///
///
Task TimeOutEvaluateAsync(int score, string createusername, int channel);
///
/// 获取计划定时事件详情
///
///
///
Task GetHangfirePlanInfo(string id);
}
}