15 lines
226 B
Go
15 lines
226 B
Go
|
|
package model
|
||
|
|
|
||
|
|
import "time"
|
||
|
|
|
||
|
|
type ShareCodeLog struct {
|
||
|
|
ID int
|
||
|
|
MacAddr string
|
||
|
|
ShareCode string
|
||
|
|
Action string // export | import
|
||
|
|
IpAddr string
|
||
|
|
EqData []byte
|
||
|
|
ExpireAt *time.Time
|
||
|
|
CreateAt time.Time
|
||
|
|
}
|