class.go 463 B

1234567891011121314
  1. package entity
  2. import (
  3. "time"
  4. )
  5. type Class struct {
  6. Id *int `json:"id,omitempty" db:"id,omitempty"`
  7. Name string `json:"name,omitempty" db:"name,omitempty"`
  8. TermId int `json:"term_id,omitempty" db:"term_id,omitempty"`
  9. CreateAt time.Time `json:"create_at,omitempty" db:"create_at,omitempty"`
  10. UpdateAt time.Time `json:"update_at,omitempty" db:"update_at,omitempty"`
  11. DeleteAt *time.Time `json:"-" db:"delete_at,omitempty"`
  12. }