ExcelController.java 766 B

1234567891011121314151617181920212223242526
  1. package com.imed.costaccount.web;
  2. import com.imed.costaccount.model.User;
  3. import io.swagger.annotations.Api;
  4. import io.swagger.annotations.ApiOperation;
  5. import org.apache.shiro.SecurityUtils;
  6. import org.springframework.web.bind.annotation.GetMapping;
  7. import org.springframework.web.bind.annotation.RequestMapping;
  8. import org.springframework.web.bind.annotation.RestController;
  9. ///**
  10. // * 相关导入导出操作
  11. // */
  12. //@Api(tags = "excel导入导出")
  13. //@RequestMapping("/excel")
  14. //public class ExcelController {
  15. //
  16. // @ApiOperation("用户导入模板设置")
  17. // @GetMapping("/getImportUserTemplate")
  18. // public void getImportUserTemplate() {
  19. // User user = (User) SecurityUtils.getSubject().getPrincipal();
  20. //
  21. // ExcelUtil
  22. // }
  23. //
  24. //}