package commands type ApiCallCommand struct { ClientIP string `json:"-"` AccessId string `json:"-"` ApiName string `json:"-"` Data string `json:"data" binding:"required"` Options ApiCallOptions `json:"options,omitempty"` } type ApiCallOptions struct { Json bool `json:"json,omitempty"` // 是否返回JSON格式 } // EncryptCommand 加密命令 type EncryptCommand struct { Data map[string]interface{} `json:"data" binding:"required"` }