admin.go 322 Bytes
package models

// ReqAdminCacheSet 请求
type ReqAdminCacheSet struct {
	BaseLoginInfo
	BaseSign
	ConfigCache int `form:"config_cache" json:"config_cache"` // 0=关闭 1=打开
}

// RspAdminCacheSet 返回
type RspAdminCacheSet struct {
	ConfigCache int `form:"config_cache" json:"config_cache"` // 0=关闭 1=打开
}