PublicReleaseCountMapper.java 1.1 KB

123456789101112131415161718192021222324252627282930
  1. package com.goafanti.common.dao;
  2. import com.goafanti.common.model.PublicReleaseCount;
  3. import com.goafanti.user.bo.outFollowStatisticsList;
  4. import com.goafanti.user.bo.outProvinceFollowStatistic;
  5. import org.apache.ibatis.annotations.Param;
  6. import java.util.List;
  7. public interface PublicReleaseCountMapper {
  8. int deleteByPrimaryKey(Integer id);
  9. int insert(PublicReleaseCount record);
  10. int insertSelective(PublicReleaseCount record);
  11. PublicReleaseCount selectByPrimaryKey(Integer id);
  12. int updateByPrimaryKeySelective(PublicReleaseCount record);
  13. int updateByPrimaryKey(PublicReleaseCount record);
  14. void insertBatch(List<PublicReleaseCount> list);
  15. List<outFollowStatisticsList> followStatisticsList(@Param("depId")String depId, @Param("date")String date,
  16. @Param("province")Integer province ,@Param("sort")Integer sort);
  17. List<outProvinceFollowStatistic> provinceFollowStatisticsList(@Param("depId")String depId, @Param("date")String date,
  18. @Param("province")Integer province ,@Param("sort")Integer sort);
  19. }