修改gorm.Model为自定义的全局global.GVA_MODEL 方便自定义基础参数

This commit is contained in:
pixel
2020-10-29 11:23:34 +08:00
parent 7cb172d60a
commit 10d8d7f28a
24 changed files with 191 additions and 168 deletions

13
server/global/model.go Normal file
View File

@@ -0,0 +1,13 @@
package global
import (
"gorm.io/gorm"
"time"
)
type GVA_MODEL struct {
ID uint `gorm:"primarykey"`
CreatedAt time.Time
UpdatedAt time.Time
DeletedAt gorm.DeletedAt `gorm:"index" json:"-"`
}