1 éve
szülő
commit
f5a14d9ae2

+ 5 - 0
platform-dao/src/main/java/com/platform/dao/vo/query/store/OutStoreFormVO.java

@@ -26,6 +26,11 @@ import java.util.List;
 @Accessors(chain = true)
 @EqualsAndHashCode(callSuper = true)
 public class OutStoreFormVO extends BaseVO implements Serializable {
+    /**
+     * 问题描述
+     */
+    private String content;
+
     private String deptId;
     private Integer oldOrNew;
     private String projectName;

+ 3 - 1
platform-service/src/main/java/com/platform/service/store/impl/OutStoreFormServiceImpl.java

@@ -138,7 +138,9 @@ public class OutStoreFormServiceImpl extends BaseServiceImpl<OutStoreFormMapper,
         OutStoreFormVO outStoreFormVO = new OutStoreFormVO();
         BeanConverterUtil.copyObjectProperties(outStoreForm, outStoreFormVO);
         if(StringUtils.isNotBlank(outStoreForm.getPickId())){
-            outStoreFormVO.setRepairNo(repairApplicationFormMapper.selectByPrimaryKey(outStoreForm.getPickId()).getNo());
+            RepairApplicationForm repairApplicationForm = repairApplicationFormMapper.selectByPrimaryKey(outStoreForm.getPickId());
+            outStoreFormVO.setRepairNo(repairApplicationForm.getNo());
+            outStoreFormVO.setContent(repairApplicationForm.getContent());
         }
         // 详情列表
       /*  if (StringUtils.isNotBlank(outStoreForm.getStoreId())) {