StarMapper.java 869 B

123456789101112131415161718192021222324252627282930313233343536
  1. package com.goafanti.common.dao;
  2. import java.util.List;
  3. import com.goafanti.common.model.Star;
  4. import com.goafanti.star.bo.BigShotStarInterest;
  5. import com.goafanti.star.bo.BigShotStarListBo;
  6. import com.goafanti.star.bo.HotStarListBo;
  7. public interface StarMapper {
  8. int deleteByPrimaryKey(String id);
  9. int insert(Star record);
  10. int insertSelective(Star record);
  11. Star selectByPrimaryKey(String id);
  12. int updateByPrimaryKeySelective(Star record);
  13. int updateByPrimaryKey(Star record);
  14. List<HotStarListBo> listHostStar();
  15. List<HotStarListBo> listStarList(String uid);
  16. void deleteAll();
  17. void insertBatch(List<Star> startList);
  18. List<BigShotStarListBo> listBigShotStar();
  19. List<BigShotStarInterest> findBigShotInterestStatus(String uid);
  20. List<BigShotStarInterest> findStarInterestStatus(String uid);
  21. }