This commit is contained in:
jiangyong27 2024-01-23 11:44:55 +08:00
parent aed2f871f0
commit 2d5f373bea
2 changed files with 16 additions and 0 deletions

11
qyweixin/app_customer.go Normal file
View File

@ -0,0 +1,11 @@
package qyweixin
type AppCustomer struct {
App
}
func NewAppCustomer(cfg *AppConfig) *AppCustomer {
return &AppCustomer{
App: *NewApp(cfg),
}
}

View File

@ -116,6 +116,11 @@ type MixMessage struct {
ScanResult string `xml:"ScanResult"`
} `xml:"ScanCodeInfo"`
// 企业微信客服相关
OpenKfId string `xml:"OpenKfId"`
Token string `xml:"Token"`
// 企业微信审核相关
ApprovalInfo struct {
SpNo string `xml:"SpNo"`
SpName string `xml:"SpName"`