Commit 5c597791 authored by 高滢's avatar 高滢

更改

parent f1db482c
...@@ -15,4 +15,10 @@ public class TestPlanRecordGetInfoRequest { ...@@ -15,4 +15,10 @@ public class TestPlanRecordGetInfoRequest {
*/ */
@ApiModelProperty("文件路径") @ApiModelProperty("文件路径")
private String fileUrl; private String fileUrl;
/**
* 文件路径
*/
@ApiModelProperty("实验结果")
private String testResult;
} }
...@@ -75,6 +75,9 @@ ...@@ -75,6 +75,9 @@
<trim prefix="SET" suffixOverrides=","> <trim prefix="SET" suffixOverrides=",">
<if test="fileUrl != null">file_url = #{fileUrl},</if> <if test="fileUrl != null">file_url = #{fileUrl},</if>
</trim> </trim>
<trim prefix="SET" suffixOverrides=",">
<if test="testResult != null">test_result = #{testResult},</if>
</trim>
where id = #{id} where id = #{id}
</update> </update>
</mapper> </mapper>
...@@ -72,7 +72,7 @@ spring: ...@@ -72,7 +72,7 @@ spring:
# 端口,默认为6379 # 端口,默认为6379
port: ${REDIS_PORT} port: ${REDIS_PORT}
# 数据库索引 # 数据库索引
database: 0 database: 1
# 密码 # 密码
password: ${REDIS_PWD} password: ${REDIS_PWD}
# 连接超时时间 # 连接超时时间
......
...@@ -74,7 +74,7 @@ spring: ...@@ -74,7 +74,7 @@ spring:
# 端口,默认为6379 # 端口,默认为6379
port: 22012 port: 22012
# 数据库索引 # 数据库索引
database: 0 database: 1
# 密码 # 密码
password: password:
# 连接超时时间 # 连接超时时间
......
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