소스 검색

Merge branch 'devRe' into innerDevelop

# Conflicts:
#	src/main/java/com/diagbot/vo/AnalyzeRunVO.java
#	src/main/java/com/diagbot/web/ADataStrController.java
wangsy 4 년 전
부모
커밋
8122edc60b
2개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 0
      src/main/java/com/diagbot/facade/BehospitalInfoFacade.java
  2. 2 2
      src/main/java/com/diagbot/vo/AnalyzeRunVO.java

+ 1 - 0
src/main/java/com/diagbot/facade/BehospitalInfoFacade.java

@@ -302,6 +302,7 @@ public class BehospitalInfoFacade extends BehospitalInfoServiceImpl {
                 for (RecordContentDTO recordContentDTO : recordContentDTOList) {
                     recTitle = recordContentDTO.getRecTitle();
                     recordContentDTO.setXmlText(encrypDES.decryptor(recordContentDTO.getXmlText()));
+                    recordContentDTO.setHtmlText(encrypDES.decryptor(recordContentDTO.getHtmlText()));
                 }
             } catch (Exception e) {
                 throw new CommonException(CommonErrorCode.SERVER_IS_ERROR,

+ 2 - 2
src/main/java/com/diagbot/vo/AnalyzeRunVO.java

@@ -22,6 +22,6 @@ public class AnalyzeRunVO {
     private Long modeId;
     // 归档字段
     private String isPlacefile = "0";
-    //默认分组
-    private Integer NeedGroup = 1;
+
+    private Integer NeedGroup = 0;
 }