17 lines
678 B
Go
17 lines
678 B
Go
package entity
|
|
|
|
type WechatInfo struct {
|
|
Id string `json:"id" bson:"id"`
|
|
AppID string `json:"appId" bson:"appId"`
|
|
GroupID string `json:"groupId" bson:"groupId"`
|
|
Created int64 `json:"created" bson:"created"`
|
|
Updated int64 `json:"updated" bson:"updated"`
|
|
|
|
WechatAppSecret string `json:"wechatAppSecret" bson:"wechatAppSecret"`
|
|
WechatAppId string `json:"wechatAppId" bson:"wechatAppId"`
|
|
WechatPath string `json:"wechatPath" bson:"wechatPath"`
|
|
WechatSize string `json:"wechatSize" bson:"wechatSize"`
|
|
QrcodeUrl string `json:"qrcodeUrl" bson:"qrcodeUrl"`
|
|
QrcodeDownloadUrl string `json:"qrcodeDownloadUrl" bson:"qrcodeDownloadUrl"`
|
|
}
|