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

This commit is contained in:
YunaiV
2023-02-04 00:15:20 +08:00
parent 245e557309
commit 837345ed95
6 changed files with 9 additions and 9 deletions

View File

@ -21,7 +21,7 @@ public class ErrorCodeApiImpl implements ErrorCodeApi {
private ErrorCodeService errorCodeService;
@Override
public void autoGenerateErrorCodes(List<ErrorCodeAutoGenerateReqDTO> autoGenerateDTOs) {
public void autoGenerateErrorCodeList(List<ErrorCodeAutoGenerateReqDTO> autoGenerateDTOs) {
errorCodeService.autoGenerateErrorCodes(autoGenerateDTOs);
}

View File

@ -18,12 +18,12 @@ public class TenantApiImpl implements TenantApi {
private TenantService tenantService;
@Override
public List<Long> getTenantIds() {
public List<Long> getTenantIdList() {
return tenantService.getTenantIds();
}
@Override
public void validTenant(Long id) {
public void validateTenant(Long id) {
tenantService.validTenant(id);
}