admin.go 257 Bytes
package models

// ReqAdminCacheSet 请求
type ReqAdminCacheSet struct {
	State int `form:"state" json:"state"` // 0=关闭 1=打开
}

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