Ver Fonte

refactor(system): 注释掉 CrmBusinessLicenseInformation 类中的姓名脱敏代码

- 在 CrmBusinessLicenseInformation 类中,将 getLegalRepresentative 方法的实现替换为注释
- 此修改可能是为了暂时禁用姓名脱敏功能,或根据需求进行其他实现
nahida há 10 meses atrás
pai
commit
4330de25cc

+ 2 - 2
zksy-system/src/main/java/com/zksy/system/basicData/domain/CrmBusinessLicenseInformation.java

@@ -177,11 +177,11 @@ private static final long serialVersionUID=1L;
     private String cancellationTime;
 
     // 姓名脱敏:只保留姓氏,名字部分用*代替
-    public String getLegalRepresentative() {
+    /*public String getLegalRepresentative() {
         if (this.legalRepresentative == null || this.legalRepresentative.length() <= 1) {
             return this.legalRepresentative;
         }
         return this.legalRepresentative.substring(0, 1) + "*";
-    }
+    }*/
 
         }