资源推送微服务

master
zhang chengzhi 2024-08-11 14:12:49 +08:00
parent 1e382a6ea4
commit 2fcc50f653
1 changed files with 18 additions and 2 deletions

View File

@ -1,5 +1,7 @@
package com.muyu.resource.controller; package com.muyu.resource.controller;
import com.github.pagehelper.PageHelper;
import com.github.pagehelper.PageInfo;
import com.muyu.common.core.domain.Result; import com.muyu.common.core.domain.Result;
import com.muyu.common.log.annotation.Log; import com.muyu.common.log.annotation.Log;
import com.muyu.common.log.enums.BusinessType; import com.muyu.common.log.enums.BusinessType;
@ -38,7 +40,7 @@ public class ResourceController {
@Log(title = "用户管理", businessType = BusinessType.IMPORT) @Log(title = "用户管理", businessType = BusinessType.IMPORT)
@RequiresPermissions("Resource:ResourceInfo:import") @RequiresPermissions("Resource:ResourceInfo:import")
@PostMapping("/importData") @PostMapping("/importData")
public Result importData (@RequestParam("file") MultipartFile file) throws Exception { public Result importData (@RequestParam("file") MultipartFile file,int pageNum,int pageSize) throws Exception {
String originalFilename = file.getOriginalFilename(); String originalFilename = file.getOriginalFilename();
@ -51,10 +53,24 @@ public class ResourceController {
List<ResourceInfo> resourceInfoList = util.importExcel(file.getInputStream()); List<ResourceInfo> resourceInfoList = util.importExcel(file.getInputStream());
PageHelper.startPage(pageNum,pageSize);
PageInfo<ResourceInfo> pageInfo = new PageInfo<>(resourceInfoList);
// String operName = SecurityUtils.getUsername(); // String operName = SecurityUtils.getUsername();
// String message = resourceService.importResource(resourceList, updateSupport, operName); // String message = resourceService.importResource(resourceList, updateSupport, operName);
return Result.success(resourceInfoList); return Result.success(pageInfo);
}
@PostMapping
public void ChaChong(){
} }