wechat_platform.go 882 B

12345678910111213141516171819202122232425262728293031
  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 DelAbstractReq struct {
  22. WechatArticleAbstractIdList []int `description:"摘要id"`
  23. TagId int `description:"标签id"`
  24. IsSelectAll bool `description:"是否选择所有摘要"`
  25. }