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