learning_go/go-code-samples/go-db-comparison/benchmarks/sqlc_generated/models.go
2025-12-20 10:21:45 +03:00

20 lines
272 B
Go

// Code generated by sqlc. DO NOT EDIT.
// versions:
// sqlc v1.16.0
package sqlc
import (
"time"
)
type Student struct {
ID int64
Fname string
Lname string
DateOfBirth time.Time
Email string
Address string
Gender string
}