mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 23:20:26 +08:00
17 lines
269 B
Go
17 lines
269 B
Go
package models
|
|
|
|
import "encoding/json"
|
|
|
|
func (this *UserIdentity) DecodeFileIds() []int64 {
|
|
if len(this.FileIds) == 0 {
|
|
return []int64{}
|
|
}
|
|
|
|
var result = []int64{}
|
|
err := json.Unmarshal(this.FileIds, &result)
|
|
if err != nil {
|
|
// ignore error
|
|
}
|
|
return result
|
|
}
|