请求方式+path变更
All checks were successful
API接口参数变更检测 / api-param-check (push) Successful in 19s

This commit is contained in:
2026-06-05 14:51:51 +08:00
parent 3102111028
commit 77479a40a1

View File

@@ -132,7 +132,7 @@ public class CultureClockInController {
* @return jnpf.base.ActionResult<jnpf.model.culture.vo.RecordListVo>
*/
@GetMapping(value = "/dynamic1")
public ActionResult<RecordListVo> getRecordList(@RequestParam(value = "cursorDate", required = false) String cursorDate,
public ActionResult<RecordListVo> getRecordList(@RequestParam(value = "cursorDate", required = false) Boolean cursorDate,
@RequestParam(value = "limitNum", required = false, defaultValue = "10") Integer limitNum) {
limitNum = Math.max(10, Math.min(limitNum, 30));