作者 tangxvhui

调整人员层级判断

@@ -329,7 +329,7 @@ func (srv *MessagePersonalService) TodayMessageTaskRecordAnomaly(param *command. @@ -329,7 +329,7 @@ func (srv *MessagePersonalService) TodayMessageTaskRecordAnomaly(param *command.
329 } 329 }
330 childUserId2 := []string{} 330 childUserId2 := []string{}
331 for _, val := range childUser { 331 for _, val := range childUser {
332 - if val.Level == 3 { 332 + if val.Level >= 3 {
333 childUserId = append(childUserId, strconv.Itoa(val.Id)) 333 childUserId = append(childUserId, strconv.Itoa(val.Id))
334 } 334 }
335 } 335 }