This commit is contained in:
Leufolium 2024-09-04 01:09:05 +08:00
parent c5924a117d
commit a2529e96c8
1 changed files with 1 additions and 2 deletions

View File

@ -54,7 +54,6 @@ func ImportZoneMemberInfo() {
zids := make([]int64, 0)
for _, zone := range zones {
zids = append(zids, zone.GetId())
fmt.Printf("%v ", zone.GetId())
}
zmlist, err := mysqlcli.GetZoneMemberCountGroupByZid(ctx, nil, zids)
@ -83,7 +82,7 @@ func ImportZoneMemberInfo() {
mobilephonestr := util.DerefString(acct.MobilePhone)
dcrb, err := mycrypto.CryptoServiceInstance().DecryptByAES([]byte(mobilephonestr))
if err != nil {
fmt.Printf("DecryptByAES : %v", err)
fmt.Printf("DecryptByAES : %v, mobielphonestr : %v", err, mobilephonestr)
return
}
mobilephone := string(dcrb)