groupReport.go 310 Bytes
Newer Older
hujiebin's avatar
hujiebin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
package group_m

import (
	"git.hilo.cn/hilo-common/domain"
	"git.hilo.cn/hilo-common/resource/mysql"
	"hilo-group/_const/enum/group_e"
)

//举报群
type GroupReport struct {
	mysql.Entity
	*domain.Model `gorm:"-"`
	GroupId       mysql.Str
	UserId        mysql.ID
	MsgStatus     group_e.MsgStatusGroupUser
}