Browse Source

修复了一些BUG

liuyc 3 years ago
parent
commit
6f83766fce

+ 1 - 1
blade-service/blade-manager/src/main/java/org/springblade/manager/controller/SignPfxFileController.java

@@ -93,7 +93,7 @@ public class SignPfxFileController extends BladeController {
 	@ApiOperationSupport(order = 11)
 	@ApiOperation(value = "获取当前系统下所有用户")
 	public R<List<User>> findUserByName(){
-		return R.data(this.contractInfoService.findUserByName(""));
+		return R.data(this.contractInfoService.findUserList());
 	}