goProject/.svn/pristine/f9/f981ab7e084ceb657f0c2ad3d71422f9542bfd3d.svn-base

14 lines
298 B
Plaintext
Raw Normal View History

2025-01-06 16:21:36 +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"`
}