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.
39 lines
970 B
C#
39 lines
970 B
C#
using Myshipping.Core;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Myshipping.Application
|
|
{
|
|
public interface IEmailParserServerManageService
|
|
{
|
|
/*
|
|
检索邮箱解析配置列表
|
|
|
|
查询邮箱解析配置台账
|
|
保存邮件解析配置
|
|
删除邮件解析配置
|
|
检索执行配置列表
|
|
|
|
查询邮箱解析执行配置台账
|
|
保存邮件解析配置
|
|
删除邮件解析配置
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
Task<TaskManageOrderResultDto> DownloadBookingConfirm(long[] bookingIds);
|
|
|
|
/// <summary>
|
|
/// 获取服务项目列表
|
|
/// </summary>
|
|
/// <param name="model">查询服务项目和状态详情</param>
|
|
/// <returns>返回回执</returns>
|
|
Task<TaskManageOrderResultDto> GetServiceProjectList(QueryServiceProjectWithStatus model);
|
|
}
|
|
}
|