no
DESKTOP-71BH0QO\L、ming
2021-04-09 b397d71a0f2e293535d9ce4739d46f594b724e55
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.panzhihua.service_community.service;
 
import com.panzhihua.common.model.dtos.community.PageQuestnaireDTO;
import com.panzhihua.common.model.vos.R;
import com.panzhihua.common.model.vos.community.questnaire.AddQuestnaireVO;
 
/**
 * @Author: llming
 * @Description: 问卷调查相关逻辑业务
 */
public interface ComActQuestnaireService {
    /**
     * 新增社区问卷
     * @return
     */
    R AddQuestnaire(AddQuestnaireVO addQuestnaireVO, Long communityId, Long userId);
    /**
     * 社区问卷列表
     */
    R ListQuestnaire(PageQuestnaireDTO pageQuestnaireDTO);
    /**
     * 修改问卷状态
     */
    R editQuestnaire();
    /**
     * 删除问卷
     */
    R deleteQuestnaire();
 
    /**
     * 问卷详情
     */
    R infoQuestnaire();
 
    /**
     * 问卷答题详情
     */
    R answerInfoQuestnaire();
}