| | |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.discuss.entity.TopicsEntity; |
| | | import org.springblade.modules.discuss.entity.UserTopicsEntity; |
| | | import org.springblade.modules.discuss.excel.UserTopicsExcel; |
| | | import org.springblade.modules.discuss.vo.TopicsVO; |
| | | import org.springblade.modules.discuss.vo.UserTopicsVO; |
| | | |
| | | import java.io.OutputStream; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 用户议题报表 服务类 |
| | |
| | | IPage<UserTopicsVO> selectUserTopicsPage(IPage<UserTopicsVO> page, UserTopicsVO userTopics); |
| | | |
| | | |
| | | Boolean batchSave(List<TopicsEntity> topics); |
| | | String batchSave(TopicsVO topics) throws Exception; |
| | | |
| | | Integer getCount(Integer id); |
| | | |
| | | List<UserTopicsExcel> exportUser(UserTopicsVO userTopics); |
| | | |
| | | Boolean saveUserTopicsEntity(UserTopicsEntity userTopics); |
| | | |
| | | void handleExcel(OutputStream out,UserTopicsVO userTopics); |
| | | |
| | | Map<String,Object> getUserTopicsTotal(Integer articleId); |
| | | } |