1Panel/backend/app/dto/common_req.go

57 lines
1.1 KiB
Go
Raw Normal View History

2022-08-16 23:30:23 +08:00
package dto
type SearchWithPage struct {
PageInfo
Info string `json:"info"`
OrderBy string `json:"orderBy"`
Order string `json:"order"`
}
2022-08-16 23:30:23 +08:00
type PageInfo struct {
Page int `json:"page" validate:"required,number"`
PageSize int `json:"pageSize" validate:"required,number"`
}
2023-02-13 15:48:18 +08:00
type UpdateDescription struct {
ID uint `json:"id" validate:"required"`
2023-05-04 17:44:41 +08:00
Description string `json:"description" validate:"max=256"`
2023-02-13 15:48:18 +08:00
}
2022-08-16 23:30:23 +08:00
type OperationWithName struct {
Name string `json:"name" validate:"required"`
}
type OperateByID struct {
ID uint `json:"id" validate:"required"`
}
type Operate struct {
Operation string `json:"operation" validate:"required"`
}
2022-08-16 23:30:23 +08:00
type BatchDeleteReq struct {
Ids []uint `json:"ids" validate:"required"`
}
2022-10-12 13:42:58 +08:00
type FilePath struct {
Path string `json:"path" validate:"required"`
}
type DeleteByName struct {
Name string `json:"name" validate:"required"`
}
type UpdateByFile struct {
File string `json:"file"`
}
type UpdateByNameAndFile struct {
Name string `json:"name"`
File string `json:"file"`
}
2022-08-16 23:30:23 +08:00
type OperationWithNameAndType struct {
Name string `json:"name"`
2022-08-16 23:30:23 +08:00
Type string `json:"type" validate:"required"`
}