1234567891011121314151617181920212223242526 |
- // 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 model
- import (
- "time"
- "gorm.io/gorm"
- )
- const TableNameSystemConfig = "system_config"
- // SystemConfig mapped from table <system_config>
- type SystemConfig struct {
- RescanReminderThreshold float32 `gorm:"column:rescan_reminder_threshold;type:float(6,2);primaryKey" json:"rescan_reminder_threshold"`
- CreatedAt time.Time `gorm:"column:created_at;type:datetime;not null" json:"created_at"`
- UpdatedAt *time.Time `gorm:"column:updated_at;type:datetime" json:"updated_at"`
- DeletedAt gorm.DeletedAt `gorm:"column:deleted_at;type:datetime" json:"deleted_at"`
- }
- // TableName SystemConfig's table name
- func (*SystemConfig) TableName() string {
- return TableNameSystemConfig
- }
|