12345678910111213141516171819 |
- package request
- type SendTemplateMsgRep struct {
- ReportId int
- }
- type WeChatLoginReq struct {
- Code string `description:"用户code"`
- }
- type Notify struct {
- ToUserName string `xml:"ToUserName"`
- FromUserName string `xml:"FromUserName"`
- CreateTime int `xml:"CreateTime"`
- MsgType string `xml:"MsgType"`
- Event string `xml:"Event"`
- EventKey string `xml:"EventKey"`
- Content string `xml:"Content"`
- }
|