2021-04-05 20:48:33 +08:00
|
|
|
package models
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"encoding/json"
|
2024-07-27 14:15:25 +08:00
|
|
|
|
2021-04-05 20:48:33 +08:00
|
|
|
"github.com/iwind/TeaGo/logs"
|
|
|
|
|
)
|
|
|
|
|
|
2022-03-22 19:30:30 +08:00
|
|
|
// DecodeGroupIds 解析分组ID
|
2021-04-05 20:48:33 +08:00
|
|
|
func (this *MessageRecipient) DecodeGroupIds() []int64 {
|
|
|
|
|
if len(this.GroupIds) == 0 {
|
|
|
|
|
return []int64{}
|
|
|
|
|
}
|
|
|
|
|
result := []int64{}
|
2022-03-22 19:30:30 +08:00
|
|
|
err := json.Unmarshal(this.GroupIds, &result)
|
2021-04-05 20:48:33 +08:00
|
|
|
if err != nil {
|
|
|
|
|
logs.Println("MessageRecipient.DecodeGroupIds(): " + err.Error())
|
|
|
|
|
// 不阻断执行
|
|
|
|
|
}
|
|
|
|
|
return result
|
|
|
|
|
}
|