jet/examples/quick-start/.gen/jetdb/dvds/model/actor.go
2020-05-31 10:42:55 +02:00

19 lines
315 B
Go

//
// Code generated by go-jet DO NOT EDIT.
//
// WARNING: Changes to this file may cause incorrect behavior
// and will be lost if the code is regenerated
//
package model
import (
"time"
)
type Actor struct {
ActorID int32 `sql:"primary_key"`
FirstName string
LastName string
LastUpdate time.Time
}