@@ -329,6 +329,7 @@ public class WorkOrderServiceImpl extends BaseServiceImpl<WorkOrderMapper, WorkO | |||
QuestionType questionType = questionTypeMapper.selectById(t.getQuestionId()); | |||
if (ObjectUtil.isNotNull(questionType)) { | |||
vo.setType(questionType.getName()); | |||
vo.setContent(questionType.getContent()); | |||
} | |||
return vo; | |||
@@ -28,6 +28,11 @@ public class WorkOrderHandleVo { | |||
*/ | |||
private Integer type; | |||
/** | |||
* 问题内容 | |||
*/ | |||
private String content; | |||
/** | |||
* 问题图片 缩略图 | |||
*/ |