system:将 api 的方法名的负数都换成 List

This commit is contained in:
YunaiV
2023-02-04 00:15:32 +08:00
parent 85aae8587e
commit d5fe4a3c89
6 changed files with 6 additions and 7 deletions

View File

@@ -24,7 +24,7 @@ public class ErrorCodeApiImpl implements ErrorCodeApi {
private ErrorCodeService errorCodeService;
@Override
public CommonResult<Boolean> autoGenerateErrorCodes(List<ErrorCodeAutoGenerateReqDTO> autoGenerateDTOs) {
public CommonResult<Boolean> autoGenerateErrorCodeList(List<ErrorCodeAutoGenerateReqDTO> autoGenerateDTOs) {
errorCodeService.autoGenerateErrorCodes(autoGenerateDTOs);
return success(true);
}

View File

@@ -21,7 +21,7 @@ public class TenantApiImpl implements TenantApi {
private TenantService tenantService;
@Override
public CommonResult<List<Long>> getTenantIds() {
public CommonResult<List<Long>> getTenantIdList() {
return success(tenantService.getTenantIds());
}