This commit is contained in:
wangliwen 2022-09-06 13:47:34 +08:00
parent 2554184b0b
commit 737c255035
1 changed files with 1 additions and 1 deletions

View File

@ -306,7 +306,7 @@ public class WaterPointController {
" `year`," +
" `month` " +
" ORDER BY " +
" `month`", water_point_id, year);
" `month`;", water_point_id, year);
return Result.success(jdbcTemplate.queryForList(sql));
}