Commit d563c8a8 authored by Ryan Loong's avatar Ryan Loong

update 分数统计增加最大和最小分的限制

parent d3f39338
......@@ -47,7 +47,7 @@ public class PointController {
}
@GetMapping("export")
public Object export(@RequestParam String studentName, @RequestParam String studentUniqueId, @RequestParam Integer classId, @RequestParam String startTime, @RequestParam String endTime,
public Object export(@RequestParam String studentName, @RequestParam String studentUniqueId, @RequestParam Integer classId, @RequestParam String startTime, @RequestParam @Nullable String endTime,
@RequestParam(defaultValue = "addTime") String sort, @RequestParam(defaultValue = "desc") String order,
@RequestParam @Nullable Integer min, @RequestParam @Nullable Integer max) {
studentUniqueId = StringUtils.isEmpty(studentUniqueId) ? null : studentUniqueId;
......
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