You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
558 B
22 lines
558 B
using Kean.Application.Command.ViewModels;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Kean.Application.Command.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// 接口命令服务
|
|
/// </summary>
|
|
public interface IInterfaceService
|
|
{
|
|
/// <summary>
|
|
/// 追加接口记录
|
|
/// </summary>
|
|
/// <param name="record">记录</param>
|
|
Task<Failure> Append(InterfaceRecord interfaceRecorderial);
|
|
|
|
/// <summary>
|
|
/// 自动清除记录
|
|
/// </summary>
|
|
Task<Failure> Clear(string addMonths);
|
|
}
|
|
}
|