bullet_chat.go 657 B

12345678910111213141516171819
  1. package response
  2. import "github.com/rdlucklib/rdluck_tools/paging"
  3. type BulletChatListResp struct {
  4. Paging *paging.PagingItem
  5. List []*BulletChatItem `description:"列表数据"`
  6. }
  7. type BulletChatItem struct {
  8. Id int `description:"弹幕ID"`
  9. Content string `description:"弹幕内容"`
  10. Title string `description:"视频标题"`
  11. Source int `description:"所属模块: 1-视频社区; 2-线上路演"`
  12. Seconds string `description:"时间点"`
  13. CreateTime string `description:"发布时间"`
  14. UserName string `description:"用户名称"`
  15. SourceAgent int `description:"发布来源: 1-小程序; 2-PC端"`
  16. }