activity_speaker.go 752 B

1234567891011121314151617181920212223242526
  1. package response
  2. import (
  3. "github.com/rdlucklib/rdluck_tools/paging"
  4. )
  5. // SpeakerPageListResp 主讲人列表响应体
  6. type SpeakerPageListResp struct {
  7. Paging *paging.PagingItem
  8. List []*SpeakerRespList `description:"列表数据"`
  9. }
  10. // SpeakerRespList 主讲人列表
  11. type SpeakerRespList struct {
  12. SpeakerId int `description:"主讲人ID"`
  13. SpeakerName string `description:"主讲人"`
  14. SpeakerHeadPic string `description:"主讲人头像"`
  15. SpeakerBackgroundPic string `description:"主讲人背景图"`
  16. CreateTime string `description:"创建时间"`
  17. }
  18. // SpeakerDelCheckResp
  19. type SpeakerDelCheckResp struct {
  20. Ok bool `description:"是否可以删除"`
  21. Msg string `description:"提示信息"`
  22. }