mirror of
https://gitee.com/wanwujie/sub2api
synced 2026-04-06 16:30:22 +08:00
14 lines
166 B
Go
14 lines
166 B
Go
|
|
package service
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type AccountGroup struct {
|
||
|
|
AccountID int64
|
||
|
|
GroupID int64
|
||
|
|
Priority int
|
||
|
|
CreatedAt time.Time
|
||
|
|
|
||
|
|
Account *Account
|
||
|
|
Group *Group
|
||
|
|
}
|