mirror of
https://github.com/xinliangnote/go-gin-api.git
synced 2024-04-21 12:31:46 +00:00
6 lines
116 B
Go
6 lines
116 B
Go
package param_bind
|
|
|
|
type ProductAdd struct {
|
|
Name string `form:"name" json:"name" validate:"required,NameValid"`
|
|
}
|