1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| package cn.flightfeather.supervision.lightshare.service
|
| import cn.flightfeather.supervision.domain.entity.OnLineQuestion
| import cn.flightfeather.supervision.lightshare.vo.QCondition
| import javax.servlet.http.HttpServletResponse
|
| interface OnLineQuestionService {
|
| fun addQuestions(userId: String, questions: List<OnLineQuestion>): Int
|
| fun getQuestions(userId: String, inUse: Boolean, page: Int, perPage: Int,response: HttpServletResponse): List<OnLineQuestion>
|
| fun getQDescription(userId: String, questionId: String): String
|
| fun getQResource(userId: String, questionId: String, page: Int, perPage: Int,response: HttpServletResponse): List<String>
|
| fun getQByConditions(userId: String, inUse: Boolean, qCondition: QCondition, page: Int, perPage: Int,response: HttpServletResponse): List<OnLineQuestion>
|
| }
|
|