14 lines
298 B
Go
14 lines
298 B
Go
package contextcheckMgr
|
|
|
|
type ResultModel struct {
|
|
Code int `json:"code"`
|
|
Msg string `json:"msg"`
|
|
Result ResultDetail `json:"result"`
|
|
}
|
|
|
|
type ResultDetail struct {
|
|
TaskId string `json:"taskId"`
|
|
Action int `json:"action"`
|
|
CensorType int `json:"censorType"`
|
|
}
|