headframe.go 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. package model
  2. // 头像列表-SkinHead exported from 个性化外观配置.xlsx
  3. type SkinHead struct {
  4. Uid int64 `json:"Uid"` // 唯一编号
  5. Name string `json:"Name"` // 头像名字
  6. Res string `json:"Res"` // 资源名
  7. UnlockItem int64 `json:"UnlockItem"` // 解锁道具 0:默认解锁
  8. Decompose []int64 `json:"Decompose"` // 分解道具
  9. } // package model
  10. // 头像框列表-SkinFrame exported from 个性化外观配置.xlsx
  11. type SkinFrame struct {
  12. Uid int64 `json:"Uid"` // 唯一编号
  13. Name string `json:"Name"` // 头像框名字
  14. Res string `json:"Res"` // 资源名
  15. UnlockItem int64 `json:"UnlockItem"` // 解锁道具 0:默认解锁
  16. Decompose []int64 `json:"Decompose"` // 分解道具
  17. } // package model
  18. // 聊天气泡列表-SkinChatFrame exported from 个性化外观配置.xlsx
  19. type SkinChatFrame struct {
  20. Uid int64 `json:"Uid"` // 唯一编号
  21. Name string `json:"Name"` // 聊天气泡名字
  22. Res string `json:"Res"` // 资源名
  23. UnlockItem int64 `json:"UnlockItem"` // 解锁道具 0:默认解锁
  24. Decompose []int64 `json:"Decompose"` // 分解道具
  25. } // package model
  26. // 聊天表情包-Emoji exported from 个性化外观配置.xlsx
  27. type Emoji struct {
  28. Uid int64 `json:"Uid"` // 编号
  29. Name string `json:"Name"` // 名字
  30. ResType int64 `json:"ResType"` // 资源类型 1:静态 2:动态
  31. ResName string `json:"ResName"` // 资源名
  32. Sort int64 `json:"Sort"` // 排序
  33. UnlockItem int64 `json:"UnlockItem"` // 解锁道具 默认解锁消耗1个 0:默认解锁
  34. }