qinglong-go/models/Dependences.go

18 lines
464 B
Go
Raw Normal View History

2022-11-16 10:20:07 +00:00
package models
import (
"time"
)
type Dependences struct {
Id int `xorm:"pk autoincr INTEGER"`
Name string `xorm:"VARCHAR(255)"`
Type string `xorm:"NUMBER"`
Timestamp string `xorm:"VARCHAR(255)"`
Status string `xorm:"NUMBER"`
Log string `xorm:"JSON"`
Remark string `xorm:"VARCHAR(255)"`
Createdat time.Time `xorm:"not null DATETIME created"`
Updatedat time.Time `xorm:"not null DATETIME updated"`
}