modify class name

This commit is contained in:
pepsi 2022-10-12 10:06:28 +08:00
parent 33d8e33968
commit 0ff6f6cf1c

View File

@ -21,9 +21,9 @@ import static org.springframework.http.MediaType.APPLICATION_JSON_VALUE;
@FeignClient(name = "log-plat", url = "http://log-plat:8080", fallbackFactory = LogPlatApiFallback.class)
public interface LogPlatApi {
@PostMapping(value = "/api/operateLog/create", consumes = APPLICATION_JSON_VALUE)
@PostMapping(value = "/api/v1/operateLog/create", consumes = APPLICATION_JSON_VALUE)
CommonResponse<Boolean> operateLogCreate(@RequestBody OperateLogReq req);
@PostMapping(value = "api/unified/operateLog/queryForPage", consumes = APPLICATION_JSON_VALUE)
@PostMapping(value = "/api/v1/operateLog/queryForPage", consumes = APPLICATION_JSON_VALUE)
CommonResponse<CommonPageResponse<OperateLogQueryResp>> queryForPage(@RequestBody @Valid OperateLogQueryReq req);
}