This commit is contained in:
wangchuxiao
2022-05-27 16:13:44 +08:00
parent 16a56457ed
commit bbe8c46df9
3 changed files with 70 additions and 61 deletions
+2 -1
View File
@@ -154,7 +154,8 @@ const (
//GroupType
NormalGroup = 0
DepartmentGroup = 1
SuperGroup = 1
DepartmentGroup = 2
GroupBaned = 3
GroupBanPrivateChat = 4
+4
View File
@@ -878,6 +878,10 @@ func (d *DataBases) GetUserFriendWorkMoments(showNumber, pageNumber int32, userI
return workMomentList, err
}
func (d *DataBases) CreateSuperGroup() {
}
func generateTagID(tagName, userID string) string {
return utils.Md5(tagName + userID + strconv.Itoa(rand.Int()) + time.Now().String())
}