goProject/trunk/framework/contextcheckMgr/resultmodel.go

14 lines
298 B
Go
Raw Normal View History

2025-01-06 16:01:02 +08:00
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"`
}