123456789101112131415161718192021222324252627282930 |
- package com.fdkankan.fusion.service;
- import com.fdkankan.fusion.entity.HotIcon;
- import com.baomidou.mybatisplus.extension.service.IService;
- import java.util.HashSet;
- import java.util.List;
- /**
- * <p>
- * 服务类
- * </p>
- *
- * @author
- * @since 2022-08-02
- */
- public interface IHotIconService extends IService<HotIcon> {
- List<HotIcon> getListByUserName(String username);
- List<HotIcon> getDefaultIcon();
- void addUseNum(Integer hotIconId);
- void cancelIsNew(String username);
- List<HotIcon> getListByCaseId(Integer caseId);
- List<HotIcon> getByIds( HashSet<Integer> hotIconId);
- }
|