feat: 兑换中心

This commit is contained in:
Blizzard
2026-02-25 14:06:18 +08:00
parent 3f50901ac6
commit 9d4a5c6375
3 changed files with 23 additions and 0 deletions
Vendored
BIN
View File
Binary file not shown.
+23
View File
@@ -0,0 +1,23 @@
package response
// WeChatCheckResultCallback 微信内容安全回调数据结构
type WeChatCheckResultCallback struct {
ToUserName string `json:"ToUserName"`
FromUserName string `json:"FromUserName"`
CreateTime int64 `json:"CreateTime"`
MsgType string `json:"MsgType"`
Event string `json:"Event"`
AppId string `json:"appid"`
TraceId string `json:"trace_id"`
Result struct {
Suggest string `json:"suggest"` // pass, risky
Label int `json:"label"`
} `json:"result"`
Detail []struct {
Strategy string `json:"strategy"`
Errcode int `json:"errcode"`
Suggest string `json:"suggest"`
Label int `json:"label"`
Prob int `json:"prob"`
} `json:"detail"`
}
Executable
BIN
View File
Binary file not shown.