Commit 9bb22928 authored by liqin's avatar liqin :speech_balloon:

bug fixed

No related merge requests found
...@@ -28,6 +28,14 @@ ...@@ -28,6 +28,14 @@
<artifactId>spring-boot-starter-test</artifactId> <artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
</dependency>
<dependency> <dependency>
<groupId>org.springframework.boot</groupId> <groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId> <artifactId>spring-boot-starter-web</artifactId>
...@@ -226,37 +234,39 @@ ...@@ -226,37 +234,39 @@
<build> <build>
<finalName>chnmuseum-party</finalName> <finalName>chnmuseum-party</finalName>
<plugins> <pluginManagement>
<plugin> <plugins>
<groupId>org.apache.maven.plugins</groupId> <plugin>
<artifactId>maven-compiler-plugin</artifactId> <groupId>org.springframework.boot</groupId>
<configuration> <artifactId>spring-boot-maven-plugin</artifactId>
<source>1.8</source> <configuration>
<target>1.8</target> <executable>true</executable>
<encoding>UTF-8</encoding> <fork>true</fork>
</configuration> <jvmArguments>-Dfile.encoding=UTF-8</jvmArguments>
</plugin> </configuration>
<plugin> </plugin>
<groupId>org.apache.maven.plugins</groupId> <plugin>
<artifactId>maven-surefire-plugin</artifactId> <groupId>org.apache.maven.plugins</groupId>
<configuration> <artifactId>maven-compiler-plugin</artifactId>
<systemPropertyVariables> <configuration>
<swaggerOutputDir>${project.basedir}/src/main/resources/swagger</swaggerOutputDir> <source>1.8</source>
<asciiDocOutputDir>${project.basedir}/src/main/resources/swagger/swagger</asciiDocOutputDir> <target>1.8</target>
</systemPropertyVariables> <encoding>UTF-8</encoding>
<skip>true</skip> </configuration>
</configuration> </plugin>
</plugin> <plugin>
<plugin> <groupId>org.apache.maven.plugins</groupId>
<groupId>org.springframework.boot</groupId> <artifactId>maven-surefire-plugin</artifactId>
<artifactId>spring-boot-maven-plugin</artifactId> <configuration>
<configuration> <systemPropertyVariables>
<executable>true</executable> <swaggerOutputDir>${project.basedir}/src/main/resources/swagger</swaggerOutputDir>
<fork>true</fork> <asciiDocOutputDir>${project.basedir}/src/main/resources/swagger/swagger</asciiDocOutputDir>
<jvmArguments>-Dfile.encoding=UTF-8</jvmArguments> </systemPropertyVariables>
</configuration> <skip>true</skip>
</plugin> </configuration>
</plugins> </plugin>
</plugins>
</pluginManagement>
<resources> <resources>
<resource> <resource>
<directory>src/main/java</directory> <directory>src/main/java</directory>
......
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
</resultMap> </resultMap>
<select id="selectListByName" resultMap="BaseResultMap"> <select id="selectListByName" resultMap="BaseResultMap">
SELECT bbi.`*`, SELECT bbi.*,
c.name AS creatorName, c.name AS creatorName,
m.name AS modifierName m.name AS modifierName
FROM bank_branch_info bbi FROM bank_branch_info bbi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment