1234567891011121314151617181920212223242526 |
- package com.imed.costaccount.web;
- import com.imed.costaccount.model.User;
- import io.swagger.annotations.Api;
- import io.swagger.annotations.ApiOperation;
- import org.apache.shiro.SecurityUtils;
- import org.springframework.web.bind.annotation.GetMapping;
- import org.springframework.web.bind.annotation.RequestMapping;
- import org.springframework.web.bind.annotation.RestController;
- ///**
- // * 相关导入导出操作
- // */
- //@Api(tags = "excel导入导出")
- //@RequestMapping("/excel")
- //public class ExcelController {
- //
- // @ApiOperation("用户导入模板设置")
- // @GetMapping("/getImportUserTemplate")
- // public void getImportUserTemplate() {
- // User user = (User) SecurityUtils.getSubject().getPrincipal();
- //
- // ExcelUtil
- // }
- //
- //}
|