type ProcModuleResult struct {
Result bool `json:"result"`
Code int `json:"bk_error_code"`
Message interface{} `json:"bk_error_msg"`
Data []ProcModuleConfig `json:"data"`
}
type ProcessCResult struct {
Result bool `json:"result"`
Code int `json:"code"`
Message interface{} `json:"message"`
Data map[string]int `json:"data"`
}
type ProcessResult struct {
Result bool `json:"result"`
Code int `json:"bk_error_code"`
Message interface{} `json:"bk_error_msg"`
Data interface{} `json:"data"`
}