Browse Source

Merge branch 'dev' of http://git.ycjcjy.com/zhiyuxing/estateagents into dev

weiximei 5 years ago
parent
commit
e7d8c662f6

+ 1
- 1
src/main/java/com/huiju/estateagents/service/impl/ExtendContentServiceImpl.java View File

@@ -80,7 +80,7 @@ public class ExtendContentServiceImpl extends ServiceImpl<ExtendContentMapper, E
80 80
         queryWrapperExtendContent.eq("org_id",orgId);
81 81
         List<ExtendContent> list = extendContentMapper.selectList(queryWrapperExtendContent);
82 82
         for (ExtendContent extendContent : list){
83
-            extendContent.setStatus(1);
83
+            extendContent.setStatus(0);
84 84
             extendContentMapper.updateById(extendContent);
85 85
         }
86 86
     }