14 lines
419 B
Go
14 lines
419 B
Go
package system
|
|
|
|
type BlockPlayer struct {
|
|
Account string `gorm:"column:account_id" json:"account_id"`
|
|
Blocked int32 `gorm:"column:blocked" json:"blocked"`
|
|
Deleted int32 `gorm:"column:deleted" json:"deleted"`
|
|
CreateTime int32 `gorm:"column:createtime" json:"createtime"`
|
|
ModifyTime int32 `gorm:"column:modifytime" json:"modifytime"`
|
|
}
|
|
|
|
func (BlockPlayer) TableName() string {
|
|
return "t_blockplayer"
|
|
}
|