package configuration import "git.sxidc.com/go-framework/baize/binding/request" type ( CreateConfigurationJsonBody struct { Scope string `json:"scope" binding:"required" assign:"toField:Scope"` Group string `json:"group" binding:"required" assign:"toField:Group"` Value string `json:"value" binding:"required" assign:"toField:Value"` } DeleteConfigurationJsonBody struct { Scope string `json:"scope" binding:"required" assign:"toField:Scope"` Group string `json:"group" binding:"required" assign:"toField:Group"` } GetConfigurationValuesQueryParams struct { Scope string `form:"scope" assign:"toField:Scope"` Group string `form:"group" assign:"toField:Group"` request.BaseQuery } )