修改干预列表的文件下载

This commit is contained in:
cjw 2024-06-06 11:28:25 +08:00
parent 8e7533cdf5
commit 97998a2cca
2 changed files with 3 additions and 6 deletions

View File

@ -22,7 +22,5 @@ public class TimeAxisVo {
private Integer situation; private Integer situation;
private String url; private Long annex;
private String originalName;
} }

View File

@ -8,11 +8,10 @@
CONCAT(DATE_FORMAT(ir.create_time, '%Y-%m-%d'), ' ', u.nick_name, '的干预') as `name`, CONCAT(DATE_FORMAT(ir.create_time, '%Y-%m-%d'), ' ', u.nick_name, '的干预') as `name`,
ir.create_time as `time`, ir.create_time as `time`,
'intervene' as `type`, 'intervene' as `type`,
o.url, ir.annex
o.original_name
from sys_intervene_record ir from sys_intervene_record ir
left join sys_user u on u.user_id = ir.counselor_id left join sys_user u on u.user_id = ir.counselor_id
left join sys_oss o on o.oss_id = ir.annex
where ir.user_id = #{userId} where ir.user_id = #{userId}
</select> </select>
</mapper> </mapper>