parent
49c8857de1
commit
18c28a8974
@ -0,0 +1,61 @@
|
||||
package com.hyp.web.controller.manager;
|
||||
|
||||
import cn.hutool.core.io.FileUtil;
|
||||
import com.hyp.common.exception.ServiceException;
|
||||
import com.hyp.system.domain.RewFileRelation;
|
||||
import com.hyp.system.service.RewFileRelationService;
|
||||
import org.springframework.stereotype.Component;
|
||||
import javax.annotation.Resource;
|
||||
import java.util.Objects;
|
||||
|
||||
/**
|
||||
* packageName com.hyp.web.controller.manager
|
||||
*
|
||||
* @author wangxy
|
||||
* @version JDK 8
|
||||
* @className FileRelationManager
|
||||
* @date 2024/4/12
|
||||
* @description 文件
|
||||
*/
|
||||
@Component
|
||||
public class FileRelationManager {
|
||||
|
||||
@Resource
|
||||
private RewFileRelationService fileRelationService;
|
||||
|
||||
/**
|
||||
*
|
||||
* 删除文件
|
||||
* @return boolean
|
||||
*/
|
||||
public boolean delFile(String fileId){
|
||||
RewFileRelation fileRelation = fileRelationService.getById(fileId);
|
||||
if(Objects.isNull(fileRelation)){
|
||||
throw new ServiceException("文件不存在");
|
||||
}
|
||||
FileUtil.del(fileRelation.getFilePath());
|
||||
return fileRelationService.removeById(fileId);
|
||||
|
||||
}
|
||||
/**
|
||||
*
|
||||
* 材料审核
|
||||
* @param applyId
|
||||
* @param fileCode
|
||||
* @param fileState
|
||||
* @return boolean
|
||||
*/
|
||||
public boolean filePass( String applyId, String fileCode, Integer fileState){
|
||||
return fileRelationService.lambdaUpdate()
|
||||
.eq(RewFileRelation::getApplyId,applyId)
|
||||
.eq(RewFileRelation::getFileCode,fileCode)
|
||||
.set(RewFileRelation::getFileState,fileState)
|
||||
.update();
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,50 @@
|
||||
package com.hyp.web.controller.reward;
|
||||
|
||||
import com.hyp.common.core.controller.BaseController;
|
||||
import com.hyp.common.core.domain.AjaxResult;
|
||||
import com.hyp.web.controller.manager.FileRelationManager;
|
||||
import io.swagger.annotations.Api;
|
||||
import io.swagger.annotations.ApiOperation;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
|
||||
|
||||
/**
|
||||
* packageName com.hyp.web.controller.reward
|
||||
*
|
||||
* @author wangxy
|
||||
* @version JDK 8
|
||||
* @className FileRelationController
|
||||
* @date 2024/4/12
|
||||
* @description 文件
|
||||
*/
|
||||
@Api("文件")
|
||||
@RestController
|
||||
@RequestMapping("/reward/file")
|
||||
public class FileRelationController extends BaseController {
|
||||
|
||||
|
||||
@Resource
|
||||
private FileRelationManager fileRelationManager;
|
||||
|
||||
@ApiOperation("材料删除")
|
||||
@GetMapping("/delFile/{fileId}")
|
||||
public AjaxResult delFile(@PathVariable String fileId){
|
||||
return toAjax(fileRelationManager.delFile(fileId));
|
||||
}
|
||||
|
||||
|
||||
@ApiOperation("材料审核")
|
||||
@GetMapping("/filePass")
|
||||
public AjaxResult filePass(@RequestParam String applyId,
|
||||
@RequestParam String fileCode,
|
||||
@RequestParam Integer fileState){
|
||||
return toAjax(fileRelationManager.filePass(applyId,fileCode,fileState));
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
Reference in new issue