cs 2 лет назад
Родитель
Сommit
ff0246e4fe

+ 1 - 1
fhKeeper/formulahousekeeper/management-platform/src/main/java/com/management/platform/service/impl/InformationServiceImpl.java

@@ -55,7 +55,7 @@ public class InformationServiceImpl extends ServiceImpl<InformationMapper, Infor
                     String name = info.getMsg().substring(0, info.getMsg().indexOf("更新任务进展为"));
                     String userWxId = "";
                     for (User item : users) {
-                        if (item.getName().equals(name)){
+                        if (name.equals(item.getName())){
                             userWxId = item.getCorpwxRealUserid();
                             break;
                         }