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
| package com.panzhihua.service_community.service;
|
| 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();
| /**
| * 修改问卷状态
| */
| R editQuestnaire();
| /**
| * 删除问卷
| */
| R deleteQuestnaire();
|
| /**
| * 问卷详情
| */
| R infoQuestnaire();
|
| /**
| * 问卷答题详情
| */
| R answerInfoQuestnaire();
| }
|
|