eight
2024-08-28 cce9d33e6c03ab48fb22c62fe5de3d1e902c598f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package cn.lihu.jh.framework.apilog.core.service;
 
import cn.lihu.jh.module.infra.api.logger.dto.ApiErrorLogCreateReqDTO;
 
/**
 * API 错误日志 Framework Service 接口
 *
 * @author 芋道源码
 */
public interface ApiErrorLogFrameworkService {
 
    /**
     * 创建 API 错误日志
     *
     * @param reqDTO API 错误日志
     */
    void createApiErrorLog(ApiErrorLogCreateReqDTO reqDTO);
 
}