From 04d9c0b515a67daafa4c9d17588670a6dd7165d9 Mon Sep 17 00:00:00 2001 From: huang <1724659546@qq.com> Date: Fri, 7 Nov 2025 16:02:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8Dbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/app/dto/plan_dto.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/app/dto/plan_dto.go b/internal/app/dto/plan_dto.go index 5419a14..51b82f1 100644 --- a/internal/app/dto/plan_dto.go +++ b/internal/app/dto/plan_dto.go @@ -7,7 +7,7 @@ import ( // ListPlansQuery 定义了获取计划列表时的查询参数 type ListPlansQuery struct { - PlanType repository.PlanTypeFilter `json:"plan_type" query:"planType"` // 计划类型 + PlanType repository.PlanTypeFilter `json:"plan_type" query:"plan_type"` // 计划类型 Page int `json:"page" query:"page"` // 页码 PageSize int `json:"page_size" query:"page_size"` // 每页大小 }