1
2
3
4
5
6
7
8
9
10
11
12
13
| package com.java110.user.bmo.question;
|
|
| import com.java110.po.questionAnswer.QuestionAnswerPo;
|
| public interface IQuestionAnswerBMO {
| /**
| * 保存用户问卷投票信息
| * @param questionAnswerPo
| * @param roomIds
| */
| void saveUserQuestionAnswer(QuestionAnswerPo questionAnswerPo,String roomIds);
| }
|
|