school_of_limit.auto.go 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // Code generated by dol build. DO NOT EDIT.
  2. // source: auto.go
  3. package model
  4. import (
  5. "github.com/2637309949/dolphin/packages/decimal"
  6. "github.com/2637309949/dolphin/packages/null"
  7. )
  8. // SchoolOfLimit defined
  9. type SchoolOfLimit struct {
  10. //
  11. SOLId null.Int `xorm:"int(11) pk notnull autoincr 's_o_l_id'" json:"s_o_l_id" xml:"s_o_l_id"`
  12. //
  13. PkSch null.Int `xorm:"int(11) 'pk_sch'" json:"pk_sch" xml:"pk_sch"`
  14. //
  15. StartDate null.Time `xorm:"datetime 'start_date'" json:"start_date" xml:"start_date"`
  16. //
  17. EndDate null.Time `xorm:"datetime 'end_date'" json:"end_date" xml:"end_date"`
  18. //
  19. Creater null.String `xorm:"varchar(36) 'creater'" json:"creater" xml:"creater"`
  20. //
  21. CreateDate null.Time `xorm:"datetime 'create_date'" json:"create_date" xml:"create_date"`
  22. //
  23. Updater null.String `xorm:"varchar(36) 'updater'" json:"updater" xml:"updater"`
  24. //
  25. UpdateDate null.Time `xorm:"datetime 'update_date'" json:"update_date" xml:"update_date"`
  26. //
  27. Isdelete null.Int `xorm:"notnull 'isdelete'" json:"isdelete" xml:"isdelete"`
  28. //
  29. OfYjType null.Int `xorm:"int(11) 'of_yj_type'" json:"of_yj_type" xml:"of_yj_type"`
  30. //
  31. OfBase decimal.Decimal `xorm:"decimal(50,3) 'of_base'" json:"of_base" xml:"of_base"`
  32. //
  33. SolName null.String `xorm:"varchar(20) 'sol_name'" json:"sol_name" xml:"sol_name"`
  34. //
  35. PkYyb null.Int `xorm:"int(11) 'pk_yyb'" json:"pk_yyb" xml:"pk_yyb"`
  36. }
  37. // TableName table name of defined SchoolOfLimit
  38. func (m *SchoolOfLimit) TableName() string {
  39. return "school_of_limit"
  40. }