14 lines
298 B
Plaintext
14 lines
298 B
Plaintext
|
|
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"`
|
||
|
|
}
|