AchievementInterestService.java 551 B

123456789101112131415161718
  1. package com.goafanti.achievement.service;
  2. import com.goafanti.common.model.AchievementInterest;
  3. import com.goafanti.core.mybatis.page.Pagination;
  4. import com.goafanti.portal.bo.AchievementInterestListBo;
  5. public interface AchievementInterestService {
  6. void saveAchievementInterest(String id);
  7. int saveCancelAchievementInterest(String id);
  8. Pagination<AchievementInterestListBo> listAchievementInterest(Integer pNo, Integer pSize);
  9. AchievementInterest selectAchievementInterestByUidAndAchievementId(String userId, String id);
  10. }