平安校园
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

19 行
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. }