完成基本的创建使用功能

This commit is contained in:
2024-09-11 20:19:47 +08:00
parent 28a84ad4d7
commit 951572a1f5
22 changed files with 783 additions and 31 deletions
+4 -2
View File
@@ -1,6 +1,8 @@
package models
import "work_cation/pkg/gormx"
type History struct {
UUID string `json:"uuid"`
Vars []string `json:"vars"`
UUID string `json:"uuid"`
Vars gormx.ListString `json:"vars"`
}