wuxw
2024-03-22 33f61efc7eab6c6d28a3eae15909c6860e8a3d40
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package com.java110.user.bmo.userQuestionAnswer;
import com.java110.dto.user.UserQuestionAnswerDto;
import org.springframework.http.ResponseEntity;
public interface IGetUserQuestionAnswerBMO {
 
 
    /**
     * 查询答卷
     * add by wuxw
     * @param  userQuestionAnswerDto
     * @return
     */
    ResponseEntity<String> get(UserQuestionAnswerDto userQuestionAnswerDto);
 
 
}