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

@ -19,7 +19,7 @@ public interface ErrorCodeApi {
*
* @param autoGenerateDTOs 错误码信息
*/
void autoGenerateErrorCodes(@Valid List<ErrorCodeAutoGenerateReqDTO> autoGenerateDTOs);
void autoGenerateErrorCodeList(@Valid List<ErrorCodeAutoGenerateReqDTO> autoGenerateDTOs);
/**
* 增量获得错误码数组

View File

@ -14,13 +14,13 @@ public interface TenantApi {
*
* @return 租户编号数组
*/
List<Long> getTenantIds();
List<Long> getTenantIdList();
/**
* 校验租户是否合法
*
* @param id 租户编号
*/
void validTenant(Long id);
void validateTenant(Long id);
}