package com.terra.system.controller.sys;
|
|
import com.terra.system.annotation.SysLog;
|
import com.terra.system.controller.all.BaseController;
|
import com.terra.system.entity.all.ResponseMsg;
|
import com.terra.system.entity.sys.DownlogEntity;
|
import com.terra.system.service.sys.DownlogService;
|
import com.terra.system.service.sys.TokenService;
|
import io.swagger.v3.oas.annotations.Operation;
|
import io.swagger.v3.oas.annotations.Parameter;
|
import io.swagger.v3.oas.annotations.Parameters;
|
import javax.annotation.Resource;
|
|
import io.swagger.v3.oas.annotations.enums.ParameterIn;
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
import org.springframework.web.bind.annotation.*;
|
import java.sql.Timestamp;
|
import java.util.List;
|
|
/**
|
* 下载日志
|
* @author WWW
|
*/
|
@Tag(name = "运维管理\\下载日志")
|
@RestController
|
@RequestMapping("/downlog")
|
public class DownlogController extends BaseController {
|
@Resource
|
DownlogService downlogService;
|
|
@Resource
|
TokenService tokenService;
|
|
@SysLog()
|
@Operation(summary = "分页查询并返回记录数")
|
@Parameters({
|
@Parameter(name = "uname", description = "用户名", in = ParameterIn.QUERY, example = "员"),
|
@Parameter(name = "type", description = "类型", in = ParameterIn.QUERY, example = "3"),
|
@Parameter(name = "start", description = "开始时间", in = ParameterIn.QUERY, example = "2022-12-09 09:00:00"),
|
@Parameter(name = "end", description = "结束时间", in = ParameterIn.QUERY, example = "2022-12-25 17:00:00"),
|
@Parameter(name = "pageSize", description = "每页条数", in = ParameterIn.QUERY, example = "10"),
|
@Parameter(name = "pageIndex", description = "分页数(从1开始)", in = ParameterIn.QUERY, example = "1")
|
})
|
@GetMapping(value = "/selectByPageAndCount")
|
public ResponseMsg<Object> selectByPageAndCount(String uname, Integer type, Timestamp start, Timestamp end, Integer pageSize, Integer pageIndex) {
|
try {
|
if (pageSize < 1 || pageIndex < 1) {
|
return fail("每页页数或分页数小于1", null);
|
}
|
|
int count = downlogService.selectCount(uname, type, start, end);
|
if (count == 0) {
|
return success(0, null);
|
}
|
|
List<DownlogEntity> rs = downlogService.selectByPage(uname, type, start, end, pageSize, pageSize * (pageIndex - 1));
|
|
return success(count, rs);
|
} catch (Exception ex) {
|
return fail(ex, null);
|
}
|
}
|
}
|