object

package
v0.0.28 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 27, 2020 License: MIT Imports: 0 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Language

type Language struct {
	ID      uint   `json:"id" gorm:"primary_key"`
	Code    string `json:"code" gorm:"type:varchar(50);unique"`
	Name    string `json:"name"  gorm:"type:varchar(50)"`
	UserID  uint   `json:"user_id"`
	UserXXX *User  `json:"user"`
}

Language model

type User

type User struct {
	ID        uint       `json:"id" gorm:"primary_key"`
	UserName  string     `json:"user_name"  gorm:"type:varchar(50);unique"`
	NameLocal string     `json:"name_local"  gorm:"type:varchar(50)"`
	Phone     string     `json:"phone"`
	Email     string     `json:"email"`
	Languages []Language `json:"languages"`
}

User model

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL