@@ -1,6 +1,5 @@ | |||
package com.tuoheng.admin.request.inspectionfile; | |||
import com.tuoheng.common.core.common.BaseQuery; | |||
import lombok.Data; | |||
import java.util.List; | |||
@@ -23,7 +22,7 @@ public class QueryInspectionFileDistributionListRequest { | |||
/** | |||
* 问题类型 | |||
*/ | |||
private String questionId; | |||
private String questionCode; | |||
/** | |||
* 问题状态:5待确认 10已忽略 15已确认 20已生成工单 25问题已处理 |
@@ -23,7 +23,7 @@ public class QueryInspectionFilePageListByInspectionIdRequest extends BaseQuery | |||
/** | |||
* 问题类型 | |||
*/ | |||
private String questionId; | |||
private String questionCode; | |||
/** | |||
* 问题状态:5待确认 10已忽略 15已确认 20已生成工单 25问题已处理 |
@@ -26,7 +26,7 @@ public class QueryInspectionFilePageListRequest extends BaseQuery { | |||
/** | |||
* 问题类型 | |||
*/ | |||
private String questionId; | |||
private String questionCode; | |||
/** | |||
* 问题状态 |
@@ -45,7 +45,7 @@ public class QueryInspectionFilePageListByInspectionIdService { | |||
private QuestionTypeMapper questionTypeMapper; | |||
public JsonResult getPageListByInspectionId(QueryInspectionFilePageListByInspectionIdRequest request) { | |||
log.info("进入根据任务ID查询巡检任务问题分页列表业务, inspectionId:{}, questionId:{}", request.getInspectionId(), request.getQuestionId()); | |||
log.info("进入根据任务ID查询巡检任务问题分页列表业务, inspectionId:{}, questionId:{}", request.getInspectionId(), request.getQuestionCode()); | |||
JsonResult result = this.check(request); | |||
if (0 != result.getCode()) { | |||
log.info("进入根据任务ID查询巡检任务问题分页列表业务:校验失败:{}", result.getMsg()); |