using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
using Volo.Abp.Application.Services;
|
using ZeroD.Util;
|
|
namespace LifePayment.Application.Contracts
|
{
|
public interface IOperateHistoryService : IApplicationService
|
{
|
Task<PageOutput<OperateHistoryDto>> GetOperateHistoryByRelationId(GetOperateHistoryInput input);
|
|
Task<PageOutput<OperateHistoryDto>> GetOperateHistoryByType(QueryOperateHistoryByTypeInput input);
|
}
|
}
|