job.go 166 B

1234567891011121314151617
  1. package orm
  2. import (
  3. "time"
  4. "github.com/jinzhu/gorm"
  5. )
  6. type Job struct {
  7. gorm.Model
  8. Name string
  9. DocumentID uint
  10. Start *time.Time
  11. End *time.Time
  12. }