db 管理初始化
This commit is contained in:
parent
3212eb6ae1
commit
09d482ac5f
|
@ -3,8 +3,7 @@ package backend
|
||||||
import "cron_admin/app/http/entities"
|
import "cron_admin/app/http/entities"
|
||||||
|
|
||||||
type DbListRequest struct {
|
type DbListRequest struct {
|
||||||
Page int `json:"page" validate:"required" form:"page" example:"1"`
|
entities.PageRequest
|
||||||
Limit int `json:"limit" validate:"required" form:"limit" example:"10"`
|
|
||||||
DbName string `json:"db_name" form:"db_name" example:""`
|
DbName string `json:"db_name" form:"db_name" example:""`
|
||||||
Status int `json:"status" form:"status" example:"1"`
|
Status int `json:"status" form:"status" example:"1"`
|
||||||
DbType string `json:"db_type" form:"db_type" example:"mysql"`
|
DbType string `json:"db_type" form:"db_type" example:"mysql"`
|
||||||
|
@ -22,7 +21,6 @@ type DbListResponse struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type DbAddRequest struct {
|
type DbAddRequest struct {
|
||||||
entities.PageRequest
|
|
||||||
DbName string `json:"db_name" validate:"required" form:"db_name" example:""`
|
DbName string `json:"db_name" validate:"required" form:"db_name" example:""`
|
||||||
DbType string `json:"db_type" validate:"required" form:"db_type" example:"mysql"`
|
DbType string `json:"db_type" validate:"required" form:"db_type" example:"mysql"`
|
||||||
DbPermission int `json:"db_permission" validate:"required" form:"db_permission" example:"1"`
|
DbPermission int `json:"db_permission" validate:"required" form:"db_permission" example:"1"`
|
||||||
|
|
|
@ -6,7 +6,7 @@ type IdRequest struct {
|
||||||
|
|
||||||
type PageRequest struct {
|
type PageRequest struct {
|
||||||
Page int `json:"page"`
|
Page int `json:"page"`
|
||||||
PageSize int `json:"pageSize"`
|
Limit int `json:"limit"`
|
||||||
}
|
}
|
||||||
|
|
||||||
type PageRsp struct {
|
type PageRsp struct {
|
||||||
|
|
Loading…
Reference in New Issue