fonchain-artistinfo/cmd/model/user_invited.go

15 lines
286 B
Go
Raw Normal View History

2023-01-18 09:03:15 +00:00
package model
import (
"gorm.io/gorm"
)
//User 用户模型
type UserInvited struct {
gorm.Model
ID int32 `gorm:"not null"`
UserId int32 `gorm:"type:int not null"`
InvitedUserId int32 `gorm:"type:int not null"`
Count int32 `gorm:"type:int not null"`
}