测试:普通参数--新增&修改&删除
All checks were successful
API接口参数变更检测 / api-param-check (push) Successful in 24s

This commit is contained in:
2026-06-05 17:24:59 +08:00
parent 88aff91e5d
commit 4ebb71f7a0
2 changed files with 3 additions and 3 deletions

View File

@@ -398,7 +398,7 @@ def send_parameter_change_notification(
# 构建参数变更通知(只包含参数变更报告,对齐 model.md # 构建参数变更通知(只包含参数变更报告,对齐 model.md
parts: List[str] = [] parts: List[str] = []
parts.append("# 【API参数变更通知】") parts.append("# 【API参数变更通知】")
parts.append(f"- **修改人:** {push_user if push_user.startswith('@') else '@' + push_user}") parts.append(f"- **修改人:** {push_user}")
parts.append(f"- **修改时间:** {push_time}") parts.append(f"- **修改时间:** {push_time}")
parts.append("") parts.append("")
for report in changed_reports: for report in changed_reports:

View File

@@ -287,9 +287,9 @@ public class WebStatisticsController implements FtbStatisticsApi {
@NoDataSourceBind @NoDataSourceBind
@Operation(summary = "日统计触发") @Operation(summary = "日统计触发")
@GetMapping("/dayStatisticsTriggered11") @GetMapping("/dayStatisticsTriggered11")
public ActionResult<Boolean> dayStatisticsTriggered(@RequestParam("tenantId") Boolean tenantId, public ActionResult<Boolean> dayStatisticsTriggered(@RequestParam("tenantId") String tenantId,
@RequestParam("groupId") Boolean groupId,
@RequestParam("userId") Boolean userId, @RequestParam("userId") Boolean userId,
@RequestParam("user") Integer user,
@RequestParam("day") Boolean day) throws LoginException { @RequestParam("day") Boolean day) throws LoginException {
StatisticsSingleDto courseEventDTO = StatisticsSingleDto.builder() StatisticsSingleDto courseEventDTO = StatisticsSingleDto.builder()
.tenantId(tenantId) .tenantId(tenantId)