mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-07 01:40:25 +08:00
10 lines
171 B
Go
10 lines
171 B
Go
|
|
package form
|
||
|
|
|
||
|
|
type ConfigForm struct {
|
||
|
|
Id int
|
||
|
|
Name string `binding:"required"`
|
||
|
|
Key string `binding:"required"`
|
||
|
|
Value string
|
||
|
|
Remark string `json:"remark"`
|
||
|
|
}
|