Browse Source

fix:修改bug

ly 10 months ago
parent
commit
4b1d11bc75

+ 1 - 1
src/main/java/cn/ezhizao/project/business/company/controller/BizCompanyController.java

@@ -220,7 +220,7 @@ public class BizCompanyController extends BaseController
                 if(bizCompany.getOldName().isEmpty()){
                     bizCompany.setOldName(company.getName());
                 }else{
-                    bizCompany.setOldName(String.join(",", bizCompany.getName(),company.getOldName()));
+                    bizCompany.setOldName(String.join(",", company.getName(),company.getOldName()));
                 }
             }
         }