mirror of
https://gitlab.com/mbugroup/lti-api.git
synced 2026-05-20 13:31:56 +00:00
20 lines
686 B
Go
20 lines
686 B
Go
package validation
|
|
|
|
type Create struct {
|
|
Name string `json:"name" validate:"required_strict,min=3"`
|
|
Address string `json:"address" validate:"required_strict"`
|
|
AreaId uint `json:"area_id" validate:"required_strict,number,gt=0"`
|
|
}
|
|
|
|
type Update struct {
|
|
Name *string `json:"name,omitempty" validate:"omitempty"`
|
|
Address *string `json:"address,omitempty" validate:"omitempty"`
|
|
AreaId *uint `json:"area_id,omitempty" validate:"omitempty,number,gt=0"`
|
|
}
|
|
|
|
type Query struct {
|
|
Page int `query:"page" validate:"omitempty,number,min=1"`
|
|
Limit int `query:"limit" validate:"omitempty,number,min=1,max=100"`
|
|
Search string `query:"search" validate:"omitempty,max=50"`
|
|
}
|