feat: 增加LinkTask实体的completionImages字段及相关数据库查询支持
主要修改: 1. 在LinkTask实体中新增completionImages字段,用于存储完成任务的图片URL。 2. 更新LinkTaskMapper以支持completionImages字段的查询和更新。 3. 在LinkStatusService中调整返回的资源信息,使用ScriptClient统一管理资源链接。 技术细节: - 通过新增completionImages字段,增强了任务完成状态的可视化和管理能力。 - 更新的数据库查询支持更灵活的任务信息获取。
This commit is contained in:
@@ -17,7 +17,7 @@ mybatis-plus:
|
||||
type-aliases-package: com.gameplatform.server.model.entity
|
||||
configuration:
|
||||
map-underscore-to-camel-case: true
|
||||
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
||||
# log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
||||
global-config:
|
||||
db-config:
|
||||
id-type: auto
|
||||
@@ -37,9 +37,9 @@ management:
|
||||
logging:
|
||||
level:
|
||||
root: info
|
||||
com.gameplatform.server: debug
|
||||
com.baomidou.mybatisplus: debug
|
||||
org.apache.ibatis: debug
|
||||
com.gameplatform.server: info
|
||||
com.baomidou.mybatisplus: info
|
||||
org.apache.ibatis: info
|
||||
com.zaxxer.hikari: info
|
||||
|
||||
security:
|
||||
@@ -64,6 +64,7 @@ springdoc:
|
||||
# 外部脚本端配置与链接过期时间
|
||||
script:
|
||||
base-url: "http://36.138.184.60:12345"
|
||||
api-base-url: "http://36.138.184.60:1234"
|
||||
connect-timeout-ms: 3000
|
||||
read-timeout-ms: 5000
|
||||
|
||||
|
||||
Reference in New Issue
Block a user