globalBroadcast.go 716 Bytes
package user_m

import (
	"git.hilo.cn/hilo-common/domain"
	"git.hilo.cn/hilo-common/resource/mysql"
	"time"
)

type UserGlobalBroadcast struct {
	mysql.Entity
	*domain.Model `gorm:"-"`
	UserId        mysql.ID
	Msg           mysql.Str
	GroupId       mysql.Str
	Status        mysql.UserYesNo
}

type UserGlobalBroadcastProhibit struct {
	mysql.Entity
	*domain.Model         `gorm:"-"`
	UserId                mysql.ID
	UserGlobalBroadcastId mysql.ID
}

//
type UserGlobalBroadcastLimit struct {
	mysql.Entity
	*domain.Model `gorm:"-"`
	UserId        mysql.ID
	EndTime       *time.Time
}

//管理全球广播的人
type GlobalBroadcastManager struct {
	mysql.Entity
	*domain.Model `gorm:"-"`
	UserId        mysql.ID
}