fix:退出登录日志记录

This commit is contained in:
2026-04-14 16:55:04 +08:00
parent 1bb95ca0f8
commit a7be490dda
6 changed files with 54 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
package com.honeycombis.honeycom.log.api.feign;
import com.honeycombis.honeycom.admin.api.dto.SysLogDTO;
import com.honeycombis.honeycom.common.core.constant.ServiceNameConstants;
import com.honeycombis.honeycom.common.core.util.R;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
@FeignClient(contextId = "remoteSpdmLogService", value = ServiceNameConstants.SPDM_SERVICE)
public interface RemoteSpdmLogService {
@PostMapping("/honeycom-spdm/spdm-log/saveLog")
R saveLog(@RequestBody SysLogDTO sysLogDto);
}