Create & Init Project...

This commit is contained in:
2019-04-22 18:49:16 +08:00
commit fc4fa37393
25440 changed files with 4054998 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
package model
// const 常量
const ()
// WXToken 返回token
type WXToken struct {
Token string `json:"access_token"`
Expires int `json:"expires_in"`
}
// WXTicket 返回ticket
type WXTicket struct {
Ticket string `json:"ticket"`
}
// TokenReq .
type TokenReq struct {
Noncestr string `json:"nonce" form:"nonce" validate:"required"`
Timestamp string `json:"timestamp" form:"timestamp" validate:"required"`
}