// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package entity import ( "github.com/gogf/gf/v2/os/gtime" ) // Words is the golang structure for table words. type Words struct { Id uint `json:"id" ` // Uid uint `json:"uid" ` // Word string `json:"word" ` // Definition string `json:"definition" ` // ExampleSentence string `json:"exampleSentence" ` // ChineseTranslation string `json:"chineseTranslation" ` // Pronunciation string `json:"pronunciation" ` // ProficiencyLevel uint `json:"proficiencyLevel" ` // CreatedAt *gtime.Time `json:"createdAt" ` // UpdatedAt *gtime.Time `json:"updatedAt" ` // }