From 09d482ac5f36e8a5849bbda1f811250c2e64bbad Mon Sep 17 00:00:00 2001 From: wuchao <1272174216@qq.com> Date: Wed, 27 Nov 2024 16:55:29 +0800 Subject: [PATCH] =?UTF-8?q?db=20=E7=AE=A1=E7=90=86=E5=88=9D=E5=A7=8B?= =?UTF-8?q?=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/http/entities/backend/db.go | 4 +--- app/http/entities/common.go | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/app/http/entities/backend/db.go b/app/http/entities/backend/db.go index 16b6de4..b20b0da 100644 --- a/app/http/entities/backend/db.go +++ b/app/http/entities/backend/db.go @@ -3,8 +3,7 @@ package backend import "cron_admin/app/http/entities" type DbListRequest struct { - Page int `json:"page" validate:"required" form:"page" example:"1"` - Limit int `json:"limit" validate:"required" form:"limit" example:"10"` + entities.PageRequest DbName string `json:"db_name" form:"db_name" example:""` Status int `json:"status" form:"status" example:"1"` DbType string `json:"db_type" form:"db_type" example:"mysql"` @@ -22,7 +21,6 @@ type DbListResponse struct { } type DbAddRequest struct { - entities.PageRequest DbName string `json:"db_name" validate:"required" form:"db_name" example:""` DbType string `json:"db_type" validate:"required" form:"db_type" example:"mysql"` DbPermission int `json:"db_permission" validate:"required" form:"db_permission" example:"1"` diff --git a/app/http/entities/common.go b/app/http/entities/common.go index 8d385d2..82a9cdb 100644 --- a/app/http/entities/common.go +++ b/app/http/entities/common.go @@ -5,8 +5,8 @@ type IdRequest struct { } type PageRequest struct { - Page int `json:"page"` - PageSize int `json:"pageSize"` + Page int `json:"page"` + Limit int `json:"limit"` } type PageRsp struct {