ScaleLogService.java 780 B

123456789101112131415161718192021222324252627282930313233
  1. package com.api.games.service;
  2. import com.api.core.response.Result;
  3. import com.api.games.model.ScaleLog;
  4. import com.api.core.service.Service;
  5. import java.util.List;
  6. import java.util.Map;
  7. /**
  8. * Created by wanghuiwen on 2020/02/23.
  9. */
  10. public interface ScaleLogService extends Service<ScaleLog> {
  11. void deleteByUid(Long id);
  12. Result list(String search, String order, Integer page, Integer size);
  13. /**
  14. * 监测当天应该完成但是未完成的用户,添加一条未测记录
  15. * 每天晚上23点55分执行
  16. */
  17. Result notPerformed();
  18. List<Map<String, Object>> download(String search, String order);
  19. Result date(Long id, Long msgId);
  20. Result listOverDate(Long uid);
  21. void deletePlayGameId(Long id);
  22. String sign(Long uid);
  23. }