1
0
mirror of https://github.com/IceWhaleTech/CasaOS.git synced 2025-07-03 23:30:39 +02:00
Files
CasaOS/model/version.go

12 lines
277 B
Go
Raw Permalink Normal View History

2021-09-26 10:35:02 +08:00
package model
import "time"
type Version struct {
Id uint `gorm:"column:id;primary_key" json:"id"`
2022-05-05 13:46:55 +08:00
ChangeLog string `json:"change_log"`
2021-09-26 10:35:02 +08:00
Version string `json:"version"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
}