|
@@ -209,7 +209,7 @@ public class NetExamServiceImpl implements NetExamService {
|
|
@Override
|
|
@Override
|
|
public Result findExamRecordDataEntity(String key, String token, Long examRecordDataId) throws Exception {
|
|
public Result findExamRecordDataEntity(String key, String token, Long examRecordDataId) throws Exception {
|
|
//封装请求参数
|
|
//封装请求参数
|
|
- final String requestUrl = String.format("%s/api/ecs_oe_admin/exam/record/data/findExamRecordDataEntity?examRecordDataId=%s", propertyService.getNetExamUrl(), examRecordDataId);
|
|
|
|
|
|
+ final String requestUrl = String.format("%s/api/ecs_oe_admin/exam/record/data/findExamRecordDataEntity?examRecordDataId=%s", propertyService.getNetAdminExamUrl(), examRecordDataId);
|
|
Result<String> result = HttpUtils.doGet(requestUrl, key, token);
|
|
Result<String> result = HttpUtils.doGet(requestUrl, key, token);
|
|
if (result.isSuccess()) {
|
|
if (result.isSuccess()) {
|
|
//过滤掉为空的属性
|
|
//过滤掉为空的属性
|
|
@@ -221,7 +221,7 @@ public class NetExamServiceImpl implements NetExamService {
|
|
@Override
|
|
@Override
|
|
public Result getExamRecordQuestions(String key, String token, Long examRecordDataId) throws Exception {
|
|
public Result getExamRecordQuestions(String key, String token, Long examRecordDataId) throws Exception {
|
|
//封装请求参数
|
|
//封装请求参数
|
|
- final String requestUrl = String.format("%s/api/ecs_oe_admin/examRecordQuestions/getExamRecordQuestions?examRecordDataId=%s", propertyService.getNetExamUrl(), examRecordDataId);
|
|
|
|
|
|
+ final String requestUrl = String.format("%s/api/ecs_oe_admin/examRecordQuestions/getExamRecordQuestions?examRecordDataId=%s", propertyService.getNetAdminExamUrl(), examRecordDataId);
|
|
Result<String> result = HttpUtils.doGet(requestUrl, key, token);
|
|
Result<String> result = HttpUtils.doGet(requestUrl, key, token);
|
|
if (result.isSuccess()) {
|
|
if (result.isSuccess()) {
|
|
//过滤掉为空的属性
|
|
//过滤掉为空的属性
|