Files
mp-qvyun/backend/database/models/qvyun/public/model/users_tenants.go
2024-11-28 16:49:57 +08:00

20 lines
316 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 (
"time"
)
type UsersTenants struct {
ID int64 `sql:"primary_key"`
UserID int64
TenantID int64
CreatedAt time.Time
}