Change ModifyTime to UpdateTime.

This commit is contained in:
zicla
2018-11-23 20:27:57 +08:00
parent b557e9717a
commit 3a5c4f6302
9 changed files with 15 additions and 15 deletions

View File

@ -11,7 +11,7 @@ type Time time.Time
type Base struct {
Uuid string `gorm:"primary_key" json:"uuid"`
Sort int64 `json:"sort"`
ModifyTime time.Time `json:"modifyTime"`
UpdateTime time.Time `json:"updateTime"`
CreateTime time.Time `json:"createTime"`
}