GameLogService.java 916 B

12345678910111213141516171819202122232425262728293031323334
  1. package com.api.games.service;
  2. import com.api.core.response.Result;
  3. import com.api.games.model.GameLog;
  4. import com.api.core.service.Service;
  5. import com.api.games.model.GameLogDownload;
  6. import com.api.games.model.GameLogDownloadV2;
  7. import java.util.List;
  8. import java.util.Map;
  9. /**
  10. * Created by wanghuiwen on 2020/02/23.
  11. */
  12. public interface GameLogService extends Service<GameLog> {
  13. Result list(String search, String order, Integer page, Integer size);
  14. Result listGameTime(Long uid);
  15. Result detail(Integer id);
  16. /**
  17. * 检查当天应该测试但是未测试的用户,添加一条未测试记录
  18. * 每天 早13:00 午:17:00;晚:21:00 执行
  19. */
  20. Result notPerformed();
  21. List<Map<String, Object>> download(String search, String order);
  22. List<GameLogDownloadV2> newDownload(String search, String orderMap);
  23. Map<String,Object> download(String search);
  24. }