76 lines
3.1 KiB
Java
76 lines
3.1 KiB
Java
|
||
|
||
package io.modules.log.controller;
|
||
|
||
import io.common.annotation.LogOperation;
|
||
import io.common.utils.ExcelUtils;
|
||
import io.common.constant.Constant;
|
||
import io.common.page.PageData;
|
||
import io.common.utils.Result;
|
||
import io.modules.log.dto.SysLogLoginDTO;
|
||
import io.modules.log.excel.SysLogLoginExcel;
|
||
import io.modules.log.service.SysLogLoginService;
|
||
import io.swagger.v3.oas.annotations.Operation;
|
||
import io.swagger.v3.oas.annotations.Parameter;
|
||
import io.swagger.v3.oas.annotations.Parameters;
|
||
import io.swagger.v3.oas.annotations.enums.ParameterIn;
|
||
import io.swagger.v3.oas.annotations.tags.Tag;
|
||
import jakarta.servlet.http.HttpServletResponse;
|
||
import lombok.AllArgsConstructor;
|
||
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
||
import org.springframework.web.bind.annotation.GetMapping;
|
||
import org.springframework.web.bind.annotation.RequestMapping;
|
||
import org.springframework.web.bind.annotation.RequestParam;
|
||
import org.springframework.web.bind.annotation.RestController;
|
||
|
||
import java.util.List;
|
||
import java.util.Map;
|
||
|
||
|
||
/**
|
||
* 登录日志
|
||
*
|
||
|
||
* @since 1.0.0
|
||
*/
|
||
@RestController
|
||
@RequestMapping("sys/log/login")
|
||
@Tag(name = "登录日志")
|
||
@AllArgsConstructor
|
||
public class SysLogLoginController {
|
||
private final SysLogLoginService sysLogLoginService;
|
||
|
||
@GetMapping("page")
|
||
@Operation(summary = "分页")
|
||
@Parameters({
|
||
@Parameter(name = Constant.PAGE, description = "当前页码,从1开始", in = ParameterIn.QUERY, required = true, ref = "int"),
|
||
@Parameter(name = Constant.LIMIT, description = "每页显示记录数", in = ParameterIn.QUERY, required = true, ref = "int"),
|
||
@Parameter(name = Constant.ORDER_FIELD, description = "排序字段", in = ParameterIn.QUERY, ref = "String"),
|
||
@Parameter(name = Constant.ORDER, description = "排序方式,可选值(asc、desc)", in = ParameterIn.QUERY, ref = "String"),
|
||
@Parameter(name = "status", description = "状态 0:失败 1:成功 2:账号已锁定", in = ParameterIn.QUERY, ref = "int"),
|
||
@Parameter(name = "creatorName", description = "用户名", in = ParameterIn.QUERY, ref = "String")
|
||
})
|
||
@RequiresPermissions("sys:log:login")
|
||
public Result<PageData<SysLogLoginDTO>> page(@Parameter(hidden = true) @RequestParam Map<String, Object> params) {
|
||
PageData<SysLogLoginDTO> page = sysLogLoginService.page(params);
|
||
|
||
return new Result<PageData<SysLogLoginDTO>>().ok(page);
|
||
}
|
||
|
||
@GetMapping("export")
|
||
@Operation(summary = "导出")
|
||
@LogOperation("导出")
|
||
@Parameters({
|
||
@Parameter(name = "status", description = "状态 0:失败 1:成功 2:账号已锁定", in = ParameterIn.QUERY, ref = "int"),
|
||
@Parameter(name = "creatorName", description = "用户名", in = ParameterIn.QUERY, ref = "String")
|
||
})
|
||
@RequiresPermissions("sys:log:login")
|
||
public void export(@Parameter(hidden = true) @RequestParam Map<String, Object> params, HttpServletResponse response) throws Exception {
|
||
List<SysLogLoginDTO> list = sysLogLoginService.list(params);
|
||
|
||
ExcelUtils.exportExcelToTarget(response, null, "登录日志", list, SysLogLoginExcel.class);
|
||
|
||
}
|
||
|
||
}
|