| 123456789101112131415161718 |
- package com.goafanti.achievement.service;
- import com.goafanti.common.model.AchievementInterest;
- import com.goafanti.core.mybatis.page.Pagination;
- import com.goafanti.portal.bo.AchievementInterestListBo;
- public interface AchievementInterestService {
- void saveAchievementInterest(String id);
- int saveCancelAchievementInterest(String id);
- Pagination<AchievementInterestListBo> listAchievementInterest(Integer pNo, Integer pSize);
- AchievementInterest selectAchievementInterestByUidAndAchievementId(String userId, String id);
- }
|