CommonController.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package com.wtkj.controller;
  2. import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
  3. import com.wtkj.service.ICommonService;
  4. import com.wtkj.service.ITaskService;
  5. import com.wtkj.util.Workload;
  6. import com.wtkj.vo.AuthUserInfo;
  7. import io.swagger.annotations.Api;
  8. import io.swagger.annotations.ApiOperation;
  9. import lombok.AllArgsConstructor;
  10. import org.springblade.core.secure.annotation.PreAuth;
  11. import org.springblade.core.tool.api.R;
  12. import org.springblade.core.tool.constant.RoleConstant;
  13. import org.springframework.web.bind.annotation.GetMapping;
  14. import org.springframework.web.bind.annotation.RequestMapping;
  15. import org.springframework.web.bind.annotation.RequestParam;
  16. import org.springframework.web.bind.annotation.RestController;
  17. import javax.servlet.http.HttpServletResponse;
  18. import java.io.IOException;
  19. import java.util.List;
  20. /**
  21. * @author Blizzard
  22. * @create at 2023-09-14 11:13
  23. * @describe
  24. */
  25. @RestController
  26. @AllArgsConstructor
  27. @RequestMapping("/common")
  28. @Api(value = "公共模块", tags = "公共模块")
  29. public class CommonController {
  30. private final ITaskService taskService;
  31. private final ICommonService commonService;
  32. /**
  33. * 当前登录用户信息
  34. */
  35. @GetMapping("/user-info")
  36. @ApiOperation(value = "当前登录用户信息", notes = "")
  37. @ApiOperationSupport(order = 1)
  38. public R<AuthUserInfo> userInfo() {
  39. return R.data(commonService.userInfo());
  40. }
  41. /**
  42. * 导出工作量
  43. */
  44. @GetMapping("/export-task")
  45. @ApiOperation(value = "工作量导出", notes = "")
  46. @ApiOperationSupport(order = 2)
  47. @PreAuth(RoleConstant.HAS_ROLE_ADMIN)
  48. public void export(@RequestParam String date, HttpServletResponse response) throws IOException {
  49. List<Workload> list = taskService.exportList(date);
  50. taskService.export(list, response);
  51. }
  52. }