time_set.auto.go 666 B

12345678910111213141516171819202122232425
  1. // Code generated by dol build. DO NOT EDIT.
  2. // source: auto.go
  3. package model
  4. import (
  5. "github.com/2637309949/dolphin/packages/null"
  6. )
  7. // TimeSet defined
  8. type TimeSet struct {
  9. //
  10. T3250 null.Int `xorm:"int(11) pk notnull autoincr 't_325_0'" json:"t_325_0" xml:"t_325_0"`
  11. //
  12. TimeName null.String `xorm:"varchar(500) notnull 'time_name'" json:"time_name" xml:"time_name"`
  13. //
  14. TimeCode null.String `xorm:"varchar(500) notnull 'time_code'" json:"time_code" xml:"time_code"`
  15. //
  16. Isdelete null.Int `xorm:"int(11) 'isdelete'" json:"isdelete" xml:"isdelete"`
  17. }
  18. // TableName table name of defined TimeSet
  19. func (m *TimeSet) TableName() string {
  20. return "time_set"
  21. }