dongyukun
9 天以前 e88fba9645a57535d858ce48da8e9d9a3dc84adc
提交 | 用户 | 时间
e7c126 1 package com.iailab.framework.apilog.core.service;
H 2
3 import com.iailab.module.infra.api.logger.dto.ApiErrorLogCreateReqDTO;
4
5 /**
6  * API 错误日志 Framework Service 接口
7  *
8  * @author iailab
9  */
10 public interface ApiErrorLogFrameworkService {
11
12     /**
13      * 创建 API 错误日志
14      *
15      * @param reqDTO API 错误日志
16      */
17     void createApiErrorLog(ApiErrorLogCreateReqDTO reqDTO);
18
19 }