25 lines
418 B
Go
25 lines
418 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 Medias struct {
|
|
ID int64 `sql:"primary_key"`
|
|
TenantID int64
|
|
Title string
|
|
Description string
|
|
Price int64
|
|
Discount int64
|
|
Publish bool
|
|
CreatedAt time.Time
|
|
UpdatedAt time.Time
|
|
}
|