13 lines
171 B
Go
13 lines
171 B
Go
|
|
package model
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type UserActive struct {
|
||
|
|
ID int
|
||
|
|
MacAddr string
|
||
|
|
Model string
|
||
|
|
ActiveDate string
|
||
|
|
IpAddr string
|
||
|
|
CreateAt time.Time
|
||
|
|
}
|