wechat_platform.go 562 B

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