修改干预列表的文件下载
This commit is contained in:
parent
8e7533cdf5
commit
97998a2cca
|
@ -22,7 +22,5 @@ public class TimeAxisVo {
|
||||||
|
|
||||||
private Integer situation;
|
private Integer situation;
|
||||||
|
|
||||||
private String url;
|
private Long annex;
|
||||||
|
|
||||||
private String originalName;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue