Package net.risesoft.api
Class ErrorLogApiImpl
- java.lang.Object
-
- net.risesoft.api.ErrorLogApiImpl
-
- All Implemented Interfaces:
ErrorLogApi
@RestController @RequestMapping(value="/services/rest/errorLog", produces="application/json") public class ErrorLogApiImpl extends Object implements ErrorLogApi错误日志记录接口- Author:
- qinman, zhangchongjie
- Date:
- 2022/12/20
-
-
Constructor Summary
Constructors Constructor Description ErrorLogApiImpl()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description net.risesoft.pojo.Y9Result<Object>saveErrorLog(String tenantId, ErrorLogModel errorLogModel)保存错误日志
-
-
-
Method Detail
-
saveErrorLog
public net.risesoft.pojo.Y9Result<Object> saveErrorLog(@RequestParam String tenantId, @RequestBody ErrorLogModel errorLogModel)
保存错误日志- Specified by:
saveErrorLogin interfaceErrorLogApi- Parameters:
tenantId- 租户iderrorLogModel- 日志信息- Returns:
Y9Result<Object>通用请求返回对象- Since:
- 9.6.6
-
-