cgp 11 часов назад
Родитель
Сommit
16752bb3de

+ 4 - 4
fs-company/src/main/java/com/fs/company/controller/qw/FsCompanyCustomerController.java

@@ -145,10 +145,10 @@ public class FsCompanyCustomerController extends BaseController {
     @GetMapping("/{id}")
     public AjaxResult getInfo(@PathVariable Long id) {
         FsCompanyCustomer fsCompanyCustomer = fsCompanyCustomerService.selectFsCompanyCustomerById(id);
-        if (fsCompanyCustomer!=null){
-            fsCompanyCustomer.setNoEncryptPhone(fsCompanyCustomer.getPhone());
-            fsCompanyCustomer.setPhone(maskPhoneMiddleFive(fsCompanyCustomer.getPhone()));
-        }
+//        if (fsCompanyCustomer!=null){
+//            fsCompanyCustomer.setNoEncryptPhone(fsCompanyCustomer.getPhone());
+//            fsCompanyCustomer.setPhone(maskPhoneMiddleFive(fsCompanyCustomer.getPhone()));
+//        }
         return AjaxResult.success(fsCompanyCustomer);
     }