fix:足迹保留100条

This commit is contained in:
Chopper711 2023-04-10 18:26:39 +08:00
parent 59c6dedd35
commit 071974c74b

View File

@ -27,7 +27,7 @@ public interface FootprintMapper extends BaseMapper<FootPrint> {
" FROM li_foot_print " +
" WHERE member_id = ${memberId} " +
" ORDER BY create_time DESC " +
" LIMIT 1 " +
" LIMIT 100 " +
" ) AS keep " +
") AS latest_footprints " +
"ON li_foot_print.id = latest_footprints.id " +