mirror of https://github.com/veypi/OneAuth.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.0 KiB
Go
37 lines
1.0 KiB
Go
//
|
|
// Copyright (C) 2024 veypi <i@veypi.com>
|
|
// 2024-09-20 16:10:16
|
|
// Distributed under terms of the MIT license.
|
|
//
|
|
|
|
package models
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
"oa/cfg"
|
|
"time"
|
|
)
|
|
|
|
type BaseModel struct {
|
|
// ID uint `json:"id" gorm:"primaryKey" methods:"get,patch,delete" parse:"path"`
|
|
ID string `json:"id" gorm:"primaryKey;type:varchar(32)" methods:"get,patch,delete" parse:"path"`
|
|
BaseDate
|
|
}
|
|
|
|
type BaseDate struct {
|
|
CreatedAt time.Time `json:"created_at" methods:"*list" parse:"query"`
|
|
UpdatedAt time.Time `json:"updated_at" methods:"*list" parse:"query"`
|
|
DeletedAt gorm.DeletedAt `gorm:"index" json:"-"`
|
|
}
|
|
|
|
func init() {
|
|
cfg.ObjList = append(cfg.ObjList, &AppUser{})
|
|
cfg.ObjList = append(cfg.ObjList, &Resource{})
|
|
cfg.ObjList = append(cfg.ObjList, &Access{})
|
|
cfg.ObjList = append(cfg.ObjList, &Role{})
|
|
cfg.ObjList = append(cfg.ObjList, &User{})
|
|
cfg.ObjList = append(cfg.ObjList, &UserRole{})
|
|
cfg.ObjList = append(cfg.ObjList, &Token{})
|
|
cfg.ObjList = append(cfg.ObjList, &App{})
|
|
}
|