字段说明测试--改动两个
All checks were successful
API接口参数变更检测 / api-param-check (push) Successful in 17s

This commit is contained in:
2026-06-05 16:02:19 +08:00
parent 026a490125
commit 1ca34c6bb2
2 changed files with 3 additions and 3 deletions

View File

@@ -46,7 +46,7 @@ def _format_param_details_section(report: EndpointChangeReport) -> List[str]:
lines.append("")
if regular_changes:
lines.append("**普通参数变更**")
# lines.append("**普通参数变更**")
lines.extend(_format_param_change_list(regular_changes))
lines.append("")

View File

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