Files
app-api/internal/model/share_code.go
T

15 lines
226 B
Go
Raw Normal View History

2026-06-12 15:50:01 +08:00
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
}