蛋蛋星球 后台端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

23 lines
1.2 KiB

  1. package md
  2. type GetFriendCircleBasicSettingsResp struct {
  3. Id int `json:"id"`
  4. CommentIsRealName int `json:"comment_is_real_name"` // 评论是否需要实名认证(1:是 2:否)
  5. PublishIsRealName int `json:"publish_is_real_name"` // 发布是否需要实名认证(1:是 2:否)
  6. CommentNumsEveryDay int `json:"comment_nums_every_day"` // 评论每天次数
  7. PublishNumsEveryDay int `json:"publish_nums_every_day"` // 发布每天次数
  8. OfficialName string `json:"official_name" `
  9. OfficialLogo string `json:"official_logo"`
  10. OfficialLogoUrl string `json:"official_logo_url"`
  11. }
  12. type UpdateFriendCircleBasicSettingsReq struct {
  13. Id int `json:"id,required"`
  14. CommentIsRealName int `json:"comment_is_real_name"` // 评论是否需要实名认证(1:是 2:否)
  15. PublishIsRealName int `json:"publish_is_real_name"` // 发布是否需要实名认证(1:是 2:否)
  16. CommentNumsEveryDay int `json:"comment_nums_every_day"` // 评论每天次数
  17. PublishNumsEveryDay int `json:"publish_nums_every_day"` // 发布每天次数
  18. OfficialName string `json:"official_name" `
  19. OfficialLogo string `json:"official_logo"`
  20. }