| | |
| | | public interface IInteractService { |
| | | |
| | | /** |
| | | * 新增互动 |
| | | * 新增互动 |
| | | * @param sign |
| | | * @return |
| | | */ |
| | |
| | | |
| | | |
| | | /** |
| | | * 删除互动 |
| | | * @param intractIds 互动id |
| | | * 删除互动 |
| | | * @param intractIds 互动id |
| | | * @return |
| | | */ |
| | | public abstract Result deleteInteracts(String[] intractIds); |
| | | |
| | | /** |
| | | * 启动互动 |
| | | * @param intractIds 互动id |
| | | * 启动互动 |
| | | * @param intractIds 互动id |
| | | * @return |
| | | */ |
| | | public abstract Result doStartInteracts(String[] interactIds); |
| | | |
| | | /** |
| | | * 停止互动 |
| | | * @param intractIds 互动id |
| | | * 停止互动 |
| | | * @param intractIds 互动id |
| | | * @return |
| | | */ |
| | | public abstract Result doStopInteracts(String[] interactIds); |
| | | |
| | | |
| | | /** |
| | | * 操作互动练习答案记录 |
| | | * 操作互动练习答案记录 |
| | | * @return |
| | | */ |
| | | public abstract Result doOperInteractExerciseAnswer(String interactGroupId, |
| | | String exerciseId, String answers, byte corrects,String currTitleNumber); |
| | | |
| | | /** |
| | | * 操作互动练习答案记录 |
| | | * 操作互动练习答案记录 |
| | | * @return |
| | | */ |
| | | public abstract Result doOperInteractExerciseAnswerNew(InteractResultData resultData); |
| | | |
| | | /** |
| | | * 操作互动练习答案记录 |
| | | * 操作互动练习答案记录 |
| | | * @return |
| | | */ |
| | | public abstract Result doSubmitInteractResult(String interactGroupId); |
| | | |
| | | /** |
| | | * 查询互动练习结果 |
| | | * 查询互动练习结果 |
| | | * @param hql |
| | | * @param args |
| | | * @return |
| | |
| | | public List<Map<String, Object>> queryResultByInteractExer(String hql, List<Object> args); |
| | | |
| | | /** |
| | | * 查询互动练习结果 |
| | | * 查询互动练习结果 |
| | | * @param hql |
| | | * @param args |
| | | * @return |