IUpdateQuestionAnswerBMO.java 378 B

1234567891011121314151617181920
  1. package com.java110.user.bmo.questionAnswer;
  2. import com.java110.po.questionAnswer.QuestionAnswerPo;
  3. import org.springframework.http.ResponseEntity;
  4. public interface IUpdateQuestionAnswerBMO {
  5. /**
  6. * 修改答卷
  7. * add by wuxw
  8. *
  9. * @param questionAnswerPo
  10. * @return
  11. */
  12. ResponseEntity<String> update(QuestionAnswerPo questionAnswerPo);
  13. }