| 1234567891011121314151617181920 |
- package com.java110.user.bmo.questionAnswer;
- import com.java110.po.questionAnswer.QuestionAnswerPo;
- import org.springframework.http.ResponseEntity;
- public interface IUpdateQuestionAnswerBMO {
- /**
- * 修改答卷
- * add by wuxw
- *
- * @param questionAnswerPo
- * @return
- */
- ResponseEntity<String> update(QuestionAnswerPo questionAnswerPo);
- }
|