Browse Source

修改配置文件

master
zhouhaibin 3 months ago
parent
commit
79c55c8c2c
  1. 64
      easy-api/pom.xml
  2. 2
      huzhou/src/main/java/com/easy/admin/modules/huzhou/service/impl/HuzhouProjectinfoServiceImpl.java

64
easy-api/pom.xml

@ -89,39 +89,39 @@
</dependency> </dependency>
</dependencies> </dependencies>
</plugin> </plugin>
<!-- <plugin>--> <plugin>
<!-- &lt;!&ndash; https://gitee.com/roseboy/classfinal &ndash;&gt;--> <!-- https://gitee.com/roseboy/classfinal -->
<!--&lt;!&ndash; <groupId>cn.ywyu</groupId>&ndash;&gt;--> <!-- <groupId>cn.ywyu</groupId>-->
<!--&lt;!&ndash; <artifactId>classfinal-maven-plugin</artifactId>&ndash;&gt;-->
<!--&lt;!&ndash; <version>1.3.2</version>&ndash;&gt;-->
<!-- <groupId>com.gitee.lcm742320521</groupId>-->
<!-- <artifactId>classfinal-maven-plugin</artifactId>--> <!-- <artifactId>classfinal-maven-plugin</artifactId>-->
<!-- <version>1.4.1</version>--> <!-- <version>1.3.2</version>-->
<!-- <configuration>--> <groupId>com.gitee.lcm742320521</groupId>
<!-- &lt;!&ndash;加密密码,如果是#号,则使用无密码模式加密,【加密后没有pom文件,不用担心泄漏】&ndash;&gt;--> <artifactId>classfinal-maven-plugin</artifactId>
<!-- <password>123456</password>--> <version>1.4.1</version>
<!-- &lt;!&ndash;加密的包名(可为空,多个用","分割)&ndash;&gt;--> <configuration>
<!-- <packages>com.easy.admin</packages>--> <!--加密密码,如果是#号,则使用无密码模式加密,【加密后没有pom文件,不用担心泄漏】-->
<!-- &lt;!&ndash;需要加密的配置文件,一般是classes目录下的yml或properties文件(可为空,多个用","分割)&ndash;&gt;--> <password>123456</password>
<!-- <cfgfiles>*.properties,*.yml,com/easy/admin/**/mapping/*.xml</cfgfiles>--> <!--加密的包名(可为空,多个用","分割)-->
<!-- &lt;!&ndash;外部依赖的jar目录,例如/tomcat/lib(可为空,多个用","分割)&ndash;&gt;--> <packages>com.easy.admin</packages>
<!-- &lt;!&ndash;<classpath></classpath>&ndash;&gt;--> <!--需要加密的配置文件,一般是classes目录下的yml或properties文件(可为空,多个用","分割)-->
<!-- <libjars>huzhou-1.1.0.jar</libjars> &lt;!&ndash;jar/war包lib下要加密jar文件名(可为空,多个用","分割)&ndash;&gt;--> <cfgfiles>*.properties,*.yml,com/easy/admin/**/mapping/*.xml</cfgfiles>
<!-- &lt;!&ndash;<cfgpasspath>/etc/.env</cfgpasspath>&ndash;&gt; &lt;!&ndash;密码文件路径,可为空,默认 /etc/.env&ndash;&gt;--> <!--外部依赖的jar目录,例如/tomcat/lib(可为空,多个用","分割)-->
<!-- &lt;!&ndash;<excludes>com.Test</excludes>&ndash;&gt; &lt;!&ndash;排除不需要加密的文件&ndash;&gt;--> <!--<classpath></classpath>-->
<!-- &lt;!&ndash;<classpath></classpath>&ndash;&gt; &lt;!&ndash;外部依赖jarlib&ndash;&gt;--> <libjars>huzhou-1.1.0.jar</libjars> <!--jar/war包lib下要加密jar文件名(可为空,多个用","分割)-->
<!-- &lt;!&ndash;<debug>true</debug>&ndash;&gt; &lt;!&ndash;调试模式,打印debug日志&ndash;&gt;--> <!--<cfgpasspath>/etc/.env</cfgpasspath>--> <!--密码文件路径,可为空,默认 /etc/.env-->
<!-- <code>7E38231D00D8427BB1E463E0BD7375EDD41D8CD98F00B204E9800998ECF8427ED41D8CD98F00B204E9800998ECF8427E</code>--> <!--<excludes>com.Test</excludes>--> <!--排除不需要加密的文件-->
<!-- </configuration>--> <!--<classpath></classpath>--> <!--外部依赖jarlib-->
<!-- <executions>--> <!--<debug>true</debug>--> <!--调试模式,打印debug日志-->
<!-- <execution>--> <code>7E38231D00D8427BB1E463E0BD7375EDD41D8CD98F00B204E9800998ECF8427ED41D8CD98F00B204E9800998ECF8427E</code>
<!-- <phase>package</phase>--> </configuration>
<!-- <goals>--> <executions>
<!-- <goal>classFinal</goal>--> <execution>
<!-- </goals>--> <phase>package</phase>
<!-- </execution>--> <goals>
<!-- </executions>--> <goal>classFinal</goal>
<!-- </plugin>--> </goals>
</execution>
</executions>
</plugin>
</plugins> </plugins>
</build> </build>

2
huzhou/src/main/java/com/easy/admin/modules/huzhou/service/impl/HuzhouProjectinfoServiceImpl.java

@ -1530,7 +1530,7 @@ public class HuzhouProjectinfoServiceImpl extends ServiceImpl<HuzhouProjectinfoM
// 分组 // 分组
Map<String, List<ProjectSummaryOV>> groupedRecords = new HashMap<>(); Map<String, List<ProjectSummaryOV>> groupedRecords = new HashMap<>();
groupedRecords.put("市委建委", records.stream().filter(r -> shiweiJianwei.contains(r.getDutyWorkplace())).collect(Collectors.toList())); groupedRecords.put("市卫健委", records.stream().filter(r -> shiweiJianwei.contains(r.getDutyWorkplace())).collect(Collectors.toList()));
groupedRecords.put("市级医院", records.stream().filter(r -> shijiYiyuan.contains(r.getDutyWorkplace())).collect(Collectors.toList())); groupedRecords.put("市级医院", records.stream().filter(r -> shijiYiyuan.contains(r.getDutyWorkplace())).collect(Collectors.toList()));
groupedRecords.put("区县", records.stream().filter(r -> quxian.contains(r.getDutyWorkplace())).collect(Collectors.toList())); groupedRecords.put("区县", records.stream().filter(r -> quxian.contains(r.getDutyWorkplace())).collect(Collectors.toList()));

Loading…
Cancel
Save