mirror of
https://github.com/lejianwen/rustdesk-api.git
synced 2025-11-30 00:53:15 +00:00
13 lines
366 B
Go
13 lines
366 B
Go
package model
|
|
|
|
type UserThird struct {
|
|
IdModel
|
|
UserId uint `json:"user_id" gorm:"not null;index"`
|
|
OpenId string `json:"open_id" gorm:"not null;index"`
|
|
UnionId string `json:"union_id" gorm:"not null;"`
|
|
ThirdType string `json:"third_type" gorm:"not null;"`
|
|
ThirdEmail string `json:"third_email"`
|
|
ThirdName string `json:"third_name"`
|
|
TimeModel
|
|
}
|