| | |
| | | import com.doumee.core.model.PageData; |
| | | import com.doumee.dao.business.model.Users; |
| | | import com.doumee.service.business.UsersService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | | import org.apache.shiro.authz.annotation.RequiresPermissions; |
| | | import io.swagger.annotations.*; |
| | | import org.apache.shiro.authz.annotation.RequiresPermissions; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.web.bind.annotation.*; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | |
| | | import java.io.File; |
| | | import java.util.ArrayList; |
| | | import java.util.List; |
| | | |
| | |
| | | public ApiResponse findById(@PathVariable Long id) { |
| | | return ApiResponse.success(usersService.findById(id)); |
| | | } |
| | | |
| | | @ApiOperation(value = "人员信息初始化导入" ,notes = "人员信息初始化导入") |
| | | @PostMapping("/importExcel") |
| | | @ApiImplicitParams({ |
| | | @ApiImplicitParam(name = "file", value = "file", required = true, paramType = "query", dataType = "file", dataTypeClass = File.class), |
| | | }) |
| | | @RequiresPermissions("business:users:create") |
| | | public ApiResponse<String> importExcel (@ApiParam(value = "file") MultipartFile file ) { |
| | | usersService.importBatch(file); |
| | | return ApiResponse.success("操作成功"); |
| | | } |
| | | } |