wechat_platform.go 654 B

12345678910111213141516171819202122232425
  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 AddQuestionReq struct {
  12. Content string `description:"公众号名称"`
  13. }
  14. type EditQuestionReq struct {
  15. QuestionId int `description:"问题id"`
  16. Content string `description:"公众号名称"`
  17. }
  18. type DelAbstractReq struct {
  19. WechatArticleAbstractIdList []int `description:"摘要id"`
  20. }