Files
qvyun/backend/database/models/qvyun_v2/public/model/storages.go
2025-01-15 10:43:16 +08:00

24 lines
605 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 (
"backend/database/fields"
"time"
)
type Storages struct {
ID int64 `sql:"primary_key" json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
IsDefault bool `json:"is_default"`
Name string `json:"name"`
Type fields.StorageType `json:"type"`
Config fields.StorageConfig `json:"config"`
}