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