wechat_platform.go 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. package request
  2. type AddWechatPlatformReq struct {
  3. Name string `description:"公众号名称"`
  4. Link string `description:"公众号文章链接"`
  5. TagIdList []int `description:"标签列表"`
  6. }
  7. type OpWechatPlatformReq struct {
  8. Status int `description:"0:禁用,1:启用"`
  9. WechatPlatformId int `description:"公众号id"`
  10. }
  11. type RefreshWechatPlatformReq struct {
  12. WechatPlatformId int `description:"公众号id"`
  13. }
  14. type AddQuestionReq struct {
  15. Content string `description:"公众号名称"`
  16. }
  17. type EditQuestionReq struct {
  18. QuestionId int `description:"问题id"`
  19. Content string `description:"公众号名称"`
  20. }
  21. type BeachOpAbstractReq struct {
  22. WechatArticleAbstractIdList []int `description:"摘要id"`
  23. NotWechatArticleAbstractIdList []int `description:"不需要的摘要id"`
  24. KeyWord string `description:"关键字"`
  25. TagId int `description:"标签id"`
  26. IsSelectAll bool `description:"是否选择所有摘要"`
  27. }