@@ -164,7 +164,7 @@
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
- <version>${parent.version}</version>
+ <version>${project.parent.version}</version>
<executions>
<execution>
<id>repackage</id>
@@ -173,6 +173,14 @@
</goals>
</execution>
</executions>
+ <configuration>
+ <excludes>
+ <exclude>
+ <groupId>org.projectlombok</groupId>
+ <artifactId>lombok</artifactId>
+ </exclude>
+ </excludes>
+ </configuration>
</plugin>
</plugins>
</build>
@@ -157,6 +157,9 @@ public class AclService {
*/
private R res(TokenVo tokenEntity, User userEntity, Map<String, String> map) {
switch (tokenEntity.getSystem().trim().toLowerCase()) {
+ case "order_query":
+ case "order_manage":
+ case "order_reply":
case "liucheng":
return R.ok().data(new LiuchengUserVo(userEntity));
case "fenxi":