nameplate.go 350 Bytes
Newer Older
chenweijian's avatar
chenweijian committed
1 2 3
package user_m

import (
hujiebin's avatar
hujiebin committed
4 5
	"git.hilo.cn/hilo-common/domain"
	"git.hilo.cn/hilo-common/resource/mysql"
chenweijian's avatar
chenweijian committed
6 7 8 9 10 11 12 13 14 15 16 17 18
	"time"
)

//用户道具
type UserNameplate struct {
	mysql.Entity
	*domain.Model `gorm:"-"`
	UserId        mysql.ID
	NameplateId   uint32
	//NameplateType     res_m2.ResNameplateType
	//Scope         res_m2.ResNameplateScope
	EndTime *time.Time
}