修复bug

This commit is contained in:
2025-11-07 16:02:16 +08:00
parent 342c9df3ff
commit 04d9c0b515

View File

@@ -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"` // 每页大小
}