add models generation and josn print
This commit is contained in:
25
app/model/prestadb/ps_smarty_cache.go
Normal file
25
app/model/prestadb/ps_smarty_cache.go
Normal file
@@ -0,0 +1,25 @@
|
||||
// Code generated by gorm.io/gen. DO NOT EDIT.
|
||||
// Code generated by gorm.io/gen. DO NOT EDIT.
|
||||
// Code generated by gorm.io/gen. DO NOT EDIT.
|
||||
|
||||
package prestadb
|
||||
|
||||
import (
|
||||
"time"
|
||||
)
|
||||
|
||||
const TableNamePsSmartyCache = "ps_smarty_cache"
|
||||
|
||||
// PsSmartyCache mapped from table <ps_smarty_cache>
|
||||
type PsSmartyCache struct {
|
||||
IDSmartyCache string `gorm:"column:id_smarty_cache;primaryKey" json:"id_smarty_cache"`
|
||||
Name string `gorm:"column:name;not null;index:name,priority:1" json:"name"`
|
||||
CacheID *string `gorm:"column:cache_id;index:cache_id,priority:1" json:"cache_id"`
|
||||
Modified time.Time `gorm:"column:modified;not null;index:modified,priority:1;default:current_timestamp()" json:"modified"`
|
||||
Content string `gorm:"column:content;not null" json:"content"`
|
||||
}
|
||||
|
||||
// TableName PsSmartyCache's table name
|
||||
func (*PsSmartyCache) TableName() string {
|
||||
return TableNamePsSmartyCache
|
||||
}
|
||||
Reference in New Issue
Block a user