| | |
| | | package com.yuanchu.limslaboratory.service; |
| | | |
| | | import com.yuanchu.limslaboratory.pojo.Dto.CnasSatisfactionSurveyDto; |
| | | import com.yuanchu.limslaboratory.pojo.CnasSatisfactionSurvey; |
| | | import com.yuanchu.limslaboratory.pojo.Dto.CnasSatisfactionSurveyPageDto; |
| | | import com.yuanchu.limslaboratory.pojo.vo.CnasSatisfactionSurveyVo; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import java.util.Map; |
| | | |
| | | /** |
| | | * @Author 张宾 |
| | |
| | | |
| | | /** |
| | | * 获取满意度调查信息 |
| | | * @param cnasSatisfactionSurveyDto |
| | | * @param cnasSatisfactionSurveyPageDto |
| | | * @return |
| | | */ |
| | | CnasSatisfactionSurveyVo getCnasSatisfactionSurvey(CnasSatisfactionSurveyDto cnasSatisfactionSurveyDto); |
| | | CnasSatisfactionSurveyVo getCnasSatisfactionSurvey(CnasSatisfactionSurveyPageDto cnasSatisfactionSurveyPageDto); |
| | | |
| | | /** |
| | | * 获取当前录入人 |
| | | * @return |
| | | */ |
| | | Map<String, Object> getFillNameAndTd(String token); |
| | | |
| | | /** |
| | | * 解析word |
| | | * @param file |
| | | * @return |
| | | */ |
| | | Map<String, String> wordParse(MultipartFile file); |
| | | |
| | | /** |
| | | * 新增满意度调查 |
| | | * @param cnasSatisfactionSurvey |
| | | * @return |
| | | */ |
| | | Boolean addSurvey(CnasSatisfactionSurvey cnasSatisfactionSurvey); |
| | | } |