20 lines
272 B
Go
20 lines
272 B
Go
// Code generated by sqlc. DO NOT EDIT.
|
|
// versions:
|
|
// sqlc v1.17.2
|
|
|
|
package main
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
type Student struct {
|
|
ID int64
|
|
Fname string
|
|
Lname string
|
|
DateOfBirth time.Time
|
|
Email string
|
|
Address string
|
|
Gender string
|
|
}
|