This commit is contained in:
邹宗楠
2022-08-19 17:31:06 +08:00
parent c25bdc27f7
commit 4266a5b0b9
3 changed files with 11 additions and 11 deletions

View File

@@ -5,7 +5,7 @@ import (
)
type SystemTemp struct {
ID int `json:"id" db:"id"`
ID int `orm:"column(id)" json:"id" db:"id"`
CreatedAt *time.Time `json:"created_at" db:"created_at"`
UpdatedAt *time.Time `json:"updated_at" db:"updated_at"`
LastOperator string `json:"last_operator" db:"last_operator"`