wechat.go 431 B

12345678910111213141516171819
  1. package request
  2. type SendTemplateMsgRep struct {
  3. ReportId int
  4. }
  5. type WeChatLoginReq struct {
  6. Code string `description:"用户code"`
  7. }
  8. type Notify struct {
  9. ToUserName string `xml:"ToUserName"`
  10. FromUserName string `xml:"FromUserName"`
  11. CreateTime int `xml:"CreateTime"`
  12. MsgType string `xml:"MsgType"`
  13. Event string `xml:"Event"`
  14. EventKey string `xml:"EventKey"`
  15. Content string `xml:"Content"`
  16. }