wechat_platform.go 746 B

1234567891011121314151617181920212223242526272829
  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. }