提交 | 用户 | 时间
|
e7c126
|
1 |
package com.iailab.module.system.api.logger; |
H |
2 |
|
|
3 |
import com.iailab.framework.common.pojo.CommonResult; |
|
4 |
import com.iailab.module.system.api.logger.dto.LoginLogCreateReqDTO; |
|
5 |
import com.iailab.module.system.service.logger.LoginLogService; |
|
6 |
import org.springframework.validation.annotation.Validated; |
|
7 |
import org.springframework.web.bind.annotation.RestController; |
|
8 |
|
|
9 |
import javax.annotation.Resource; |
|
10 |
|
|
11 |
import static com.iailab.framework.common.pojo.CommonResult.success; |
|
12 |
|
|
13 |
@RestController // 提供 RESTful API 接口,给 Feign 调用 |
|
14 |
@Validated |
|
15 |
public class LoginLogApiImpl implements LoginLogApi { |
|
16 |
|
|
17 |
@Resource |
|
18 |
private LoginLogService loginLogService; |
|
19 |
|
|
20 |
@Override |
|
21 |
public CommonResult<Boolean> createLoginLog(LoginLogCreateReqDTO reqDTO) { |
|
22 |
loginLogService.createLoginLog(reqDTO); |
|
23 |
return success(true); |
|
24 |
} |
|
25 |
|
|
26 |
} |