2019-07-17 13:22:14 +02:00
|
|
|
//
|
|
|
|
|
// Code generated by go-jet DO NOT EDIT.
|
2019-09-26 12:31:03 +02:00
|
|
|
// Generated at Thursday, 26-Sep-19 12:02:13 CEST
|
2019-07-17 13:22:14 +02:00
|
|
|
//
|
|
|
|
|
// 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
|
|
|
|
|
}
|