101captain
2022-04-11 04b08bd3aa0e54fc65450e6c966e473b6897e9ac
花城临时功能修改
5个文件已修改
22 ■■■■■ 已修改文件
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComActActivityVO.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/utlis/AssemblyUtils.java 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActActivityDO.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActReserveAnswerContentServiceImpl.java 8 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActReserveRecordServiceImpl.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/model/vos/community/ComActActivityVO.java
@@ -285,4 +285,8 @@
    private Integer signCount;
    private Integer registerCount;
    private Integer isArticle;
    private String jumpArticleUrl;
}
springcloud_k8s_panzhihuazhihuishequ/common/src/main/java/com/panzhihua/common/utlis/AssemblyUtils.java
@@ -33,7 +33,7 @@
        //构建单个用户数据
        List<Object> userData = new ArrayList<>();
        String noExport = "以上信息仅用于";
        String noExport = "本人对信息内容";
        //遍历答案列表
        Long reserveRecordId = 0L;
        Long reserveSubId = 0L;
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComActActivityDO.java
@@ -243,4 +243,8 @@
     * 单次活动时长(小时)
     */
    private Integer duration;
    private Integer isArticle;
    private String  jumpArticleUrl;
}
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActReserveAnswerContentServiceImpl.java
@@ -73,10 +73,6 @@
            if(vo.getType()==2){
                vo.setAnswerContent(vo.getAnswerContent().replaceAll("(?<=\\w{3})\\w(?=\\w{4})", "*"));
            }
            if(vo.getType()==3){
                vo.setAnswerContent(vo.getAnswerContent().replaceAll(
                        "(\\d{3})\\d{4}(\\d{4})", "$1****$2"));
            }
        });
        result.setAnswers(vos);
@@ -115,10 +111,6 @@
                    for (ComActReserveRegisterDetailedAnswerVO detailed:registerDetailedAnswerList) {
                        if(detailed.getType()==2){
                            detailed.setAnswerContent(detailed.getAnswerContent().replaceAll("(?<=\\w{3})\\w(?=\\w{4})", "*"));
                        }
                        if(detailed.getType()==3){
                            detailed.setAnswerContent(detailed.getAnswerContent().replaceAll(
                                    "(\\d{3})\\d{4}(\\d{4})", "$1****$2"));
                        }
                        if(!detailed.getType().equals(5)){
                            if(detailed.getType().equals(1)){
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/service/impl/ComActReserveRecordServiceImpl.java
@@ -331,10 +331,6 @@
                if(answer.getType()==2){
                    answer.setAnswerContent(answer.getAnswerContent().replaceAll("(?<=\\w{3})\\w(?=\\w{4})", "*"));
                }
                if(answer.getType()==3){
                    answer.setAnswerContent(answer.getAnswerContent().replaceAll(
                            "(\\d{3})\\d{4}(\\d{4})", "$1****$2"));
                }
            });
            registerDetailedVO.setAnswerList(answerList);
        }