Browse Source

update

master
DengBiao 1 year ago
parent
commit
76996f3e9d
1 changed files with 9 additions and 8 deletions
  1. +9
    -8
      internal/logic/domain/group/model/group.go

+ 9
- 8
internal/logic/domain/group/model/group.go View File

@@ -85,14 +85,15 @@ func (g *Group) ToProto() *pb.Group {
func CreateGroup(userId, masterId int64, in *pb.CreateGroupReq) *Group {
now := time.Now()
group := &Group{
Name: in.Name,
AvatarUrl: in.AvatarUrl,
Introduction: in.Introduction,
MasterId: masterId,
Extra: in.Extra,
Members: make([]GroupUser, 0, len(in.MemberIds)+1),
CreateTime: now,
UpdateTime: now,
Name: in.Name,
AvatarUrl: in.AvatarUrl,
Introduction: in.Introduction,
MasterId: masterId,
Extra: in.Extra,
Members: make([]GroupUser, 0, len(in.MemberIds)+1),
IsAllMemberBanned: 2,
CreateTime: now,
UpdateTime: now,
}

// 创建者添加为群主


Loading…
Cancel
Save