This commit is contained in:
laodaming
2023-11-10 10:23:26 +08:00
parent 5c1f33a8a8
commit 360c19a8f5
6 changed files with 38 additions and 12 deletions

View File

@@ -39,12 +39,12 @@ type RenderProcessTime struct {
// 合图返回数据
type CombineImageRspMsg struct {
RequestId string `json:"request_id"`
CombineImage string `json:"combine_image"` //刀版图
SizeId int64 `json:"size_id"` //尺寸id
ModelId int64 `json:"model_id"`
TemplateId int64 `json:"template_id"`
CombineProcessTime CombineProcessTime `json:"combine_process_time"`
RequestId string `json:"request_id"`
CombineImage string `json:"combine_image"` //刀版图
SizeId int64 `json:"size_id"` //尺寸id
ModelId int64 `json:"model_id"`
TemplateId int64 `json:"template_id"`
CombineProcessTime *CombineProcessTime `json:"combine_process_time"`
}
type CombineProcessTime struct {
CombineTakesTime string `json:"combine_takes_time"` //合图时间
@@ -71,3 +71,9 @@ type ToUnityIdStruct struct {
UserId int64 `json:"user_id"`
GuestId int64 `json:"guest_id"`
}
// 要求前端重发渲染消息事件结构
type RequestBrowserResendRenderEvent struct {
RequestId string `json:"request_id"`
Description string `json:"description"`
}