修改请求打包文件名称

This commit is contained in:
lvleigang 2024-04-24 11:14:26 +08:00
parent 6bb8e96229
commit d4f6096104
4 changed files with 7 additions and 6 deletions

View File

@ -53,7 +53,7 @@
</profile> </profile>
</profiles> </profiles>
<build> <build>
<finalName>kangarooDataCenter</finalName> <finalName>kangarooDataCenterV3</finalName>
</build> </build>
</project> </project>

View File

@ -2,9 +2,9 @@
logging: logging:
#日志级别 指定目录级别 #日志级别 指定目录级别
level: level:
root: error root: info
file: file:
path: /Users/apple/Desktop/log/dev path: /home/webservice/zt/log
spring: spring:
datasource: datasource:
dynamic: dynamic:
@ -15,4 +15,4 @@ spring:
password: bd993088e8a7c3dc5f44441617f9b4bf password: bd993088e8a7c3dc5f44441617f9b4bf
driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置 driver-class-name: com.mysql.jdbc.Driver # 3.2.0开始支持SPI可省略此配置
savefile: savefile:
path: /Users/apple/Desktop/log/dev path: /home/webservice/zt/file

View File

@ -1,7 +1,7 @@
server: server:
port: 9999 port: 9999
servlet: servlet:
context-path: /kangarooDataCenter context-path: /kangarooDataCenterV3
localIP: 127.0.0.1 localIP: 127.0.0.1
tomcat: tomcat:
uri-encoding: utf-8 uri-encoding: utf-8

View File

@ -59,7 +59,7 @@
parameterType="com.hzya.frame.sysnew.messageManageLog.entity.SysMessageManageLogEntity"> parameterType="com.hzya.frame.sysnew.messageManageLog.entity.SysMessageManageLogEntity">
select select
<include refid="SysMessageManageLogEntity_Base_Column_List"/> <include refid="SysMessageManageLogEntity_Base_Column_List"/>
from v_view_message_manage_log from sys_message_manage_log
<trim prefix="where" prefixOverrides="and"> <trim prefix="where" prefixOverrides="and">
<if test="id != null and id != ''">and id = #{id}</if> <if test="id != null and id != ''">and id = #{id}</if>
<if test="messageManageId != null and messageManageId != ''">and message_manage_id = #{messageManageId}</if> <if test="messageManageId != null and messageManageId != ''">and message_manage_id = #{messageManageId}</if>
@ -616,6 +616,7 @@ where id = #{id}
BOOLEAN MODE) BOOLEAN MODE)
</if> </if>
</trim> </trim>
ORDER BY create_time DESC
</select> </select>
</mapper> </mapper>