
com.nxyfan.framework.survey.service.IWjAnswerService Maven / Gradle / Ivy
package com.nxyfan.framework.survey.service;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.nxyfan.framework.survey.entity.WjAnswer;
import com.nxyfan.framework.survey.param.AnswerPageParam;
import com.nxyfan.framework.survey.param.AnswerSubmitParam;
import com.nxyfan.framework.survey.result.AnswerDetailResult;
/**
*
* Describe: 调查问卷回答表 服务类
* Author: caoyang
* Create Time: 2023年2月23日 上午9:21:09
* Copyright @ 2023 51LIFE
*/
public interface IWjAnswerService extends IService {
/**
*
* Describe: 回答调查问卷
* Author: caoyang
* Create Time: 2023年2月23日 上午9:33:51
* @param answerParam
* @return 调查问卷回答主键
*/
String answer(AnswerSubmitParam answerParam);
/**
*
* Describe: 获取调查问卷回答分页
* Author: caoyang
* Create Time: 2023年3月1日 下午3:06:22
* @param pageParam
* @return 调查问卷回答分页
*/
Page page(AnswerPageParam pageParam);
/**
*
* Describe: 获取调查问卷回答详情
* Author: caoyang
* Create Time: 2023年3月10日 下午6:16:02
* @param surveyFlow
* @param answerFlow
* @return 调查问卷回答详情
*/
AnswerDetailResult detail(String surveyFlow, String answerFlow);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy