words.go 834 B

12345678910111213141516171819202122232425
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package do
  5. import (
  6. "github.com/gogf/gf/v2/frame/g"
  7. "github.com/gogf/gf/v2/os/gtime"
  8. )
  9. // Words is the golang structure of table words for DAO operations like Where/Data.
  10. type Words struct {
  11. g.Meta `orm:"table:words, do:true"`
  12. Id interface{} //
  13. Uid interface{} //
  14. Word interface{} //
  15. Definition interface{} //
  16. ExampleSentence interface{} //
  17. ChineseTranslation interface{} //
  18. Pronunciation interface{} //
  19. ProficiencyLevel interface{} //
  20. CreatedAt *gtime.Time //
  21. UpdatedAt *gtime.Time //
  22. }