25 lines
600 B
Go
25 lines
600 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" json:"id"`
|
|
TenantID int64 `json:"tenant_id"`
|
|
Title string `json:"title"`
|
|
Description string `json:"description"`
|
|
Price int64 `json:"price"`
|
|
Discount int64 `json:"discount"`
|
|
Publish bool `json:"publish"`
|
|
CreatedAt time.Time `json:"created_at"`
|
|
UpdatedAt time.Time `json:"updated_at"`
|
|
}
|