feat: add models

This commit is contained in:
Rogee
2024-11-28 16:49:57 +08:00
parent 451192a2ca
commit 77e962b668
23 changed files with 995 additions and 235 deletions

View File

@@ -0,0 +1,19 @@
//
// 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 UsersTenants struct {
ID int64 `sql:"primary_key"`
UserID int64
TenantID int64
CreatedAt time.Time
}