goProject/trunk/framework/contextcheckMgr/resultmodel.go
皮蛋13361098506 1b77f62820 初始化项目
2025-01-06 16:01:02 +08:00

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"`
}