瀏覽代碼

bug修复

koul 5 年之前
父節點
當前提交
50739993c5
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/java/com/uas/service/Impl/CustomerServiceImpl.java

+ 1 - 1
src/main/java/com/uas/service/Impl/CustomerServiceImpl.java

@@ -618,7 +618,7 @@ public class CustomerServiceImpl implements CustomerService {
     public void updateCUGZStatus(List<String> list){
         if (list!=null&&list.size()>0) {
             baseDao.execute(
-                    "update customer set cu_gzstatus='正在关注' where cu_name in (select fb_name from fbbusiness where fb_tyshxycode in (" + list2String(list) + ")");
+                    "update customer set cu_gzstatus='正在关注' where cu_name in (select fb_name from fbbusiness where fb_tyshxycode in (" + list2String(list) + "))");
         }
     }