db 管理初始化

This commit is contained in:
wuchao 2024-11-27 16:55:29 +08:00
parent 3212eb6ae1
commit 09d482ac5f
2 changed files with 3 additions and 5 deletions

View File

@ -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"`

View File

@ -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 {