新增分享码功能

This commit is contained in:
eafonyang
2026-06-12 15:50:01 +08:00
parent 46fd35b0df
commit 8010cbd32f
24 changed files with 2610 additions and 66 deletions
+14
View File
@@ -0,0 +1,14 @@
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
}