IHotIconService.java 610 B

123456789101112131415161718192021222324252627282930
  1. package com.fdkankan.fusion.service;
  2. import com.fdkankan.fusion.entity.HotIcon;
  3. import com.baomidou.mybatisplus.extension.service.IService;
  4. import java.util.HashSet;
  5. import java.util.List;
  6. /**
  7. * <p>
  8. * 服务类
  9. * </p>
  10. *
  11. * @author
  12. * @since 2022-08-02
  13. */
  14. public interface IHotIconService extends IService<HotIcon> {
  15. List<HotIcon> getListByUserName(String username);
  16. List<HotIcon> getDefaultIcon();
  17. void addUseNum(Integer hotIconId);
  18. void cancelIsNew(String username);
  19. List<HotIcon> getListByCaseId(Integer caseId);
  20. List<HotIcon> getByIds( HashSet<Integer> hotIconId);
  21. }