db 管理初始化
This commit is contained in:
parent
3212eb6ae1
commit
09d482ac5f
|
@ -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"`
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue