words.go 1012 B

1234567891011121314151617181920212223
  1. // =================================================================================
  2. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  3. // =================================================================================
  4. package entity
  5. import (
  6. "github.com/gogf/gf/v2/os/gtime"
  7. )
  8. // Words is the golang structure for table words.
  9. type Words struct {
  10. Id uint `json:"id" ` //
  11. Uid uint `json:"uid" ` //
  12. Word string `json:"word" ` //
  13. Definition string `json:"definition" ` //
  14. ExampleSentence string `json:"exampleSentence" ` //
  15. ChineseTranslation string `json:"chineseTranslation" ` //
  16. Pronunciation string `json:"pronunciation" ` //
  17. ProficiencyLevel uint `json:"proficiencyLevel" ` //
  18. CreatedAt *gtime.Time `json:"createdAt" ` //
  19. UpdatedAt *gtime.Time `json:"updatedAt" ` //
  20. }