perf: 优化脱敏工具,修复父类中脱敏注解无效的bug

This commit is contained in:
曾文豪
2023-03-09 15:58:05 +08:00
parent a65ea27485
commit 8873053c06
5 changed files with 47 additions and 18 deletions

View File

@@ -102,7 +102,9 @@ public class TestController {
@TokenIgnore
public ApiResp<List<TestFile>> desensitize() {
TestFile file = new TestFile("11111");
file.setTest("111111");
TestFile file1 = new TestFile("22222");
file1.setTest("22222");
return ApiResp.respOK(CollUtil.newArrayList(file, file1));
}