This commit is contained in:
aozhiwei 2024-04-02 08:39:41 +08:00
parent f8e39bdc96
commit 48a33b5028

View File

@ -17,6 +17,7 @@ type guild struct {
maxMemberNum int32
createTime int32
modifyTime int32
idHash map[string]*member
}
func (this *guild) GetGuildId() string {
@ -43,5 +44,6 @@ func (this *guild) loadFromDb(ds *f5.DataSet) {
func newGuild() *guild {
p := new(guild)
p.idHash = make(map[string]*member)
return p
}