github.com/machinefi/w3bstream@v1.6.5-rc9.0.20240426031326-b8c7c4876e72/pkg/depends/kit/modelgen/__examples__/org.go (about) 1 package example 2 3 // @def primary ID 4 5 // Org describe organization information 6 type Org struct { 7 ID uint64 `db:"f_id,autoincrement"` 8 Name string `db:"f_name,default=''"` 9 // @rel User.ID 10 // User relation... 11 UserID string `db:"f_user_id"` 12 }