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.
25 lines
714 B
C#
25 lines
714 B
C#
using DS.Module.Core;
|
|
using DS.Module.DjyServiceStatus;
|
|
using DS.WMS.Core.TaskPlat.Dtos;
|
|
using Microsoft.AspNetCore.Http;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace DS.WMS.Core.TaskPlat.Interface
|
|
{
|
|
public interface ITaskManageService
|
|
{
|
|
/// <summary>
|
|
/// 创建任务
|
|
/// </summary>
|
|
/// <param name="info">任务详情</param>
|
|
/// <param name="file"></param>
|
|
/// <param name="modifyFile"></param>
|
|
/// <returns>返回回执</returns>
|
|
Task<DataResult> InitTaskJob(TaskManageOrderMessageInfo info, IFormFile file = null, IFormFile modifyFile = null);
|
|
}
|
|
}
|