平安校园
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.
 
 
 
 
 
 

19 regels
615 B

  1. using SafeCampus.Application.Services.Business.PassengerFlowService.Dto;
  2. namespace SafeCampus.Application.Services.Business.PassengerFlowService;
  3. public interface IPassengerFlowService : ITransient
  4. {
  5. /// <summary>
  6. /// 添加客流查询任务
  7. /// </summary>
  8. /// <param name="input">添加参数</param>
  9. /// <returns></returns>
  10. Task<bool> Add(PassengerFlowDto input);
  11. /// <summary>
  12. /// 分页查询列表
  13. /// </summary>
  14. /// <param name="search"></param>
  15. /// <returns></returns>
  16. Task<SqlSugarPagedList<PassengerFlowList>> GetPageList(PassengerFlowSearch search);
  17. }