ec_of_yj.auto.go 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  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. // EcOfYj defined
  8. type EcOfYj struct {
  9. //
  10. EcOfYjId null.Int `xorm:"int(11) pk notnull autoincr 'ec_of_yj_id'" json:"ec_of_yj_id" xml:"ec_of_yj_id"`
  11. //
  12. OfId null.Int `xorm:"int(11) 'of_id'" json:"of_id" xml:"of_id"`
  13. //
  14. UserId null.Int `xorm:"int(11) 'user_id'" json:"user_id" xml:"user_id"`
  15. //
  16. YjblNum null.Float `xorm:"float(11,2) 'yjbl_num'" json:"yjbl_num" xml:"yjbl_num"`
  17. //
  18. Creater null.String `xorm:"varchar(36) 'creater'" json:"creater" xml:"creater"`
  19. //
  20. CreateDate null.Time `xorm:"datetime 'create_date'" json:"create_date" xml:"create_date"`
  21. //
  22. Updater null.String `xorm:"varchar(36) 'updater'" json:"updater" xml:"updater"`
  23. //
  24. UpdateDate null.Time `xorm:"datetime 'update_date'" json:"update_date" xml:"update_date"`
  25. //
  26. Isdelete null.Int `xorm:"notnull 'isdelete'" json:"isdelete" xml:"isdelete"`
  27. }
  28. // TableName table name of defined EcOfYj
  29. func (m *EcOfYj) TableName() string {
  30. return "ec_of_yj"
  31. }