11 lines
205 B
Go
11 lines
205 B
Go
|
package request
|
||
|
|
||
|
import "cutego/pkg/base"
|
||
|
|
||
|
type ConfigQuery struct {
|
||
|
base.GlobalQuery
|
||
|
ConfigName string `form:"configName"`
|
||
|
ConfigType string `form:"configType"`
|
||
|
ConfigKey string `form:"configKey"`
|
||
|
}
|