videoplayer/proto/req.go

13 lines
246 B
Go
Raw Normal View History

2025-05-02 21:58:40 +08:00
package proto
type GeneralResp struct {
Code int `json:"code"`
Message string `json:"message"`
Data any `json:"data"`
}
2025-09-20 14:20:19 +08:00
type CIDCallBackReq struct {
Token string `json:"token" form:"token"`
ID int `json:"id" form:"id"`
}