¶Ô±ÈÐÂÎļþ |
| | |
| | | package com.yuanchu.limslaboratory.service; |
| | | |
| | | 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 å¼ å®¾ |
| | | * @Date 2023/8/10 |
| | | */ |
| | | public interface CnasSatisfactionSurveyService{ |
| | | |
| | | /** |
| | | * è·å满æåº¦è°æ¥ä¿¡æ¯ |
| | | * @param cnasSatisfactionSurveyPageDto |
| | | * @return |
| | | */ |
| | | 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); |
| | | } |