|
@@ -319,9 +319,10 @@ func MarkGroupApplyRecord(applyRecordId, adminId, userId int, groupName string)
|
|
|
// 未处理过则进行标记
|
|
|
if wxUser.IsDeal == 0 {
|
|
|
wxUser.IsDeal = 1
|
|
|
+ wxUser.MarkGroup = groupName
|
|
|
wxUser.LastUpdatedTime = time.Now()
|
|
|
userUpdateCols := make([]string, 0)
|
|
|
- userUpdateCols = append(userUpdateCols, "IsDeal", "LastUpdatedTime")
|
|
|
+ userUpdateCols = append(userUpdateCols, "IsDeal", "MarkGroup", "LastUpdatedTime")
|
|
|
err = wxUser.Update(userUpdateCols)
|
|
|
if err != nil {
|
|
|
err = errors.New(fmt.Sprint("对应用户信息标记失败", err))
|