2023-08-07 03:25:06 +00:00
|
|
|
package websocket_data
|
|
|
|
|
|
|
|
// websocket数据交互
|
|
|
|
type DataTransferData struct {
|
|
|
|
T string `json:"t"` //消息类型
|
|
|
|
D interface{} `json:"d"` //传递的消息
|
|
|
|
}
|
2023-08-07 04:31:31 +00:00
|
|
|
|
|
|
|
// websocket接受要云渲染处理的数据
|
2023-08-07 03:25:06 +00:00
|
|
|
type RenderImageReqMsg struct {
|
2023-08-07 10:37:33 +00:00
|
|
|
RenderId string `json:"render_id"` //渲染id
|
|
|
|
RenderData RenderData `json:"render_data"`
|
|
|
|
}
|
|
|
|
type RenderData struct {
|
2023-08-15 06:31:51 +00:00
|
|
|
TemplateTag string `json:"template_tag"` //模板标签(必须)
|
|
|
|
ProductId int64 `json:"product_id"` //产品id(必须)
|
|
|
|
Website string `json:"website"` //网站(可选)
|
|
|
|
Slogan string `json:"slogan"` //slogan(可选)
|
|
|
|
Address string `json:"address"` //地址(可选)
|
|
|
|
Phone string `json:"phone"` //电话(可选)
|
2023-08-15 06:21:32 +00:00
|
|
|
UserId int64 `json:"user_id"` //用户id(websocket连接建立再赋值)
|
|
|
|
GuestId int64 `json:"guest_id"` //游客id(websocket连接建立再赋值)
|
2023-08-15 06:31:51 +00:00
|
|
|
Logo string `json:"logo"` //log资源地址(websocket连接建立再赋值)
|
2023-08-07 03:25:06 +00:00
|
|
|
}
|
2023-08-07 04:31:31 +00:00
|
|
|
|
|
|
|
// websocket发送渲染完的数据
|
2023-08-07 03:25:06 +00:00
|
|
|
type RenderImageRspMsg struct {
|
|
|
|
RenderId string `json:"render_id"` //渲染id
|
|
|
|
Image string `json:"image"` //渲染结果图片
|
|
|
|
}
|
2023-08-07 04:31:31 +00:00
|
|
|
|
|
|
|
// 渲染服务器回调数据
|
|
|
|
type RenderImageNotify struct {
|
|
|
|
TaskId string `json:"task_id"`
|
|
|
|
Image string `json:"image"`
|
|
|
|
}
|
2023-08-07 03:25:06 +00:00
|
|
|
type ThirdPartyLoginRspMsg struct {
|
|
|
|
//websocket三方登录的通知数据
|
|
|
|
Token string `json:"token"`
|
|
|
|
}
|
2023-08-07 03:49:17 +00:00
|
|
|
|
|
|
|
// 发送到渲染组装的mq数据
|
|
|
|
type AssembleRenderData struct {
|
2023-08-07 10:37:33 +00:00
|
|
|
TaskId string `json:"task_id"`
|
2023-08-08 04:22:15 +00:00
|
|
|
RenderId string `json:"render_id"`
|
2023-08-07 10:37:33 +00:00
|
|
|
RenderData RenderData `json:"render_data"`
|
2023-08-07 03:49:17 +00:00
|
|
|
}
|