| | |
| | | package com.smartor.service; |
| | | |
| | | import com.smartor.domain.ServiceSubtaskAnswer; |
| | | import com.ruoyi.common.core.domain.AjaxResult; |
| | | import com.smartor.domain.*; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * 任务问卷问题选项Service接口 |
| | |
| | | * @author ruoyi |
| | | * @date 2024-07-18 |
| | | */ |
| | | public interface IServiceSubtaskAnswerService |
| | | { |
| | | public interface IServiceSubtaskAnswerService { |
| | | /** |
| | | * 查询任务问卷问题选项 |
| | | * |
| | |
| | | * @return 结果 |
| | | */ |
| | | public int deleteServiceSubtaskAnswerById(Long id); |
| | | |
| | | /** |
| | | * 将缓存的数据保存到数据库 |
| | | * |
| | | * @param serviceSubTaskAnswerReq |
| | | * @return |
| | | */ |
| | | public Integer saveQuestionAnswer(ServiceSubTaskAnswerReq serviceSubTaskAnswerReq); |
| | | |
| | | /** |
| | | * 将问题保存到缓存 |
| | | * |
| | | * @param serviceSubTaskCacheReq |
| | | * @return |
| | | */ |
| | | public Integer saveQuestionCache(ServiceSubTaskCacheReq serviceSubTaskCacheReq); |
| | | |
| | | public Map<String,Object> getQuestionCache(ServiceSubTaskCacheReq serviceSubTaskCacheReq); |
| | | |
| | | public Map<String, Object> selectPatQuestionResult(ServiceSubTaskQueryReq serviceSubTaskQueryReq); |
| | | |
| | | } |