package orm import ( "time" "github.com/jinzhu/gorm" ) type Job struct { gorm.Model Name string DocumentID uint Start *time.Time End *time.Time }