using SafeCampus.Application.Services.Business.PassengerFlowService.Dto; namespace SafeCampus.Application.Services.Business.PassengerFlowService; public interface IPassengerFlowService : ITransient { /// /// 添加客流查询任务 /// /// 添加参数 /// Task Add(PassengerFlowDto input); /// /// 分页查询列表 /// /// /// Task> GetPageList(PassengerFlowSearch search); }