ApplyTaskService.java 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. package com.qmth.exam.reserve.service;
  2. import java.util.List;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import com.qmth.boot.core.collection.PageResult;
  5. import com.qmth.exam.reserve.bean.applytask.CurrentApplyTaskVO;
  6. import com.qmth.exam.reserve.bean.login.LoginUser;
  7. import com.qmth.exam.reserve.bean.stdapply.CategoryVO;
  8. import com.qmth.exam.reserve.bean.task.ApplyTaskPageReq;
  9. import com.qmth.exam.reserve.bean.task.ApplyTaskReq;
  10. import com.qmth.exam.reserve.bean.task.ApplyTaskVO;
  11. import com.qmth.exam.reserve.entity.ApplyTaskEntity;
  12. public interface ApplyTaskService extends IService<ApplyTaskEntity> {
  13. PageResult<ApplyTaskVO> page(ApplyTaskPageReq req);
  14. ApplyTaskVO find(Long id);
  15. void saveRule(ApplyTaskReq req, LoginUser user);
  16. List<CategoryVO> listTask();
  17. CurrentApplyTaskVO currentApplyTask(Long orgId);
  18. ApplyTaskEntity getLessInfoApplyTaskById(Long applyTaskId);
  19. ApplyTaskEntity findApplyTask();
  20. void saveNotice(Long userId, Long id, String notice);
  21. void enable(Long userId, Long id, Boolean enable);
  22. void deleteRule(Long timeId);
  23. }