This commit is contained in:
邹宗楠
2023-02-02 18:30:54 +08:00
parent f032189688
commit 616102db91
6 changed files with 118 additions and 1 deletions

View File

@@ -68,7 +68,7 @@ type ModelIDCULD struct {
ID int `orm:"column(id)" json:"id"`
CreatedAt time.Time `orm:"auto_now_add;type(datetime)" json:"createdAt"`
UpdatedAt time.Time `orm:"auto_now;type(datetime)" json:"updatedAt"`
LastOperator string `orm:"size(32)" json:"lastOperator"` // 最后操作员
LastOperator string `orm:"size(32)" json:"lastOperator"` // 最后操作员1
DeletedAt time.Time `orm:"type(datetime);null" json:"deletedAt"`
}