| | |
| | | package com.smartor.service; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.ruoyi.common.core.domain.entity.SysUser; |
| | | import com.smartor.domain.SvyLibTopic; |
| | | import com.smartor.domain.SvyLibTopicRes; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | /** |
| | | * 问卷题目Service接口 |
| | | * |
| | | * |
| | | * @author ruoyi |
| | | * @date 2023-03-03 |
| | | */ |
| | | public interface ISvyLibTopicService |
| | | { |
| | | public interface ISvyLibTopicService { |
| | | /** |
| | | * 查询问卷题目 |
| | | * |
| | | * |
| | | * @param topicid 问卷题目主键 |
| | | * @return 问卷题目 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询问卷题目列表 |
| | | * |
| | | * |
| | | * @param svyLibTopic 问卷题目 |
| | | * @return 问卷题目集合 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 新增问卷题目 |
| | | * |
| | | * |
| | | * @param svyLibTopic 问卷题目 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 修改问卷题目 |
| | | * |
| | | * |
| | | * @param svyLibTopic 问卷题目 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 批量删除问卷题目 |
| | | * |
| | | * |
| | | * @param topicids 需要删除的问卷题目主键集合 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 删除问卷题目信息 |
| | | * |
| | | * |
| | | * @param topicid 问卷题目主键 |
| | | * @return 结果 |
| | | */ |
| | | public int deleteSvyLibTopicByTopicid(Long topicid); |
| | | |
| | | /** |
| | | * 批量导入问问题目 |
| | | * |
| | | * @param multipartFile |
| | | * @return |
| | | */ |
| | | public List<SvyLibTopicRes> importLitTopic(SysUser user,MultipartFile multipartFile); |
| | | } |