page_pic.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package apis
  2. type PagePicAddRequest struct {
  3. SelfId int64 `json:"self_id"`
  4. SelfName string `json:"self_name"`
  5. Pic string `json:"pic"`
  6. }
  7. type PagePicAddReply struct {
  8. }
  9. type PagePicUpdateRequest struct {
  10. SelfId int64 `json:"self_id"`
  11. SelfName string `json:"self_name"`
  12. Pic string `json:"pic"`
  13. Id int64 `json:"id"`
  14. }
  15. type PagePicUpdateReply struct {
  16. }
  17. type PagePicDelRequest struct {
  18. SelfId int64 `json:"self_id"`
  19. SelfName string `json:"self_name"`
  20. Id int64 `json:"id"`
  21. }
  22. type PagePicDelReply struct {
  23. }
  24. type PagePicItem struct {
  25. Pic string `json:"pic"`
  26. Id int64 `json:"id"`
  27. CreatedAt int64 `json:"created_at"`
  28. }
  29. type PagePicListRequest struct {
  30. Page int64 `json:"page"`
  31. PageSize int64 `json:"page_size"`
  32. }
  33. type PagePicListReply struct {
  34. Page int64 `json:"page"`
  35. Total int64 `json:"total"`
  36. List []*PagePicItem `json:"list"`
  37. }
  38. /*
  39. type PagePicPublishRequest struct {
  40. SelfId int64 `json:"self_id"`
  41. SelfName string `json:"self_name"`
  42. Id int64 `json:"id"`
  43. PublishStatus int32 `json:"publish_status"`
  44. }
  45. type PagePicPublishReply struct {
  46. }
  47. */