admin.go 257 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 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=打开 }