代码提交

This commit is contained in:
liang.chao 2025-09-28 15:40:12 +08:00
parent 066f4b81eb
commit ee462d28f4
1 changed files with 4 additions and 6 deletions

View File

@ -12,9 +12,7 @@ import com.bonus.web.service.TransferApplyService;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
import java.util.ArrayList;
import java.util.List;
@ -73,9 +71,9 @@ public class FileTransferReceiveController extends BaseController {
}
}
@ApiOperation(value = "档案移交文件接收")
@GetMapping("transferReceive")
@SysLog(title = "档案移交文件接收", module = "数据/档案移交->档案移交接收管理", businessType = OperaType.QUERY, details = "档案移交文件接收", logType = 1)
public AjaxResult transferReceive(TransferFileDto dto) {
@PostMapping("transferReceive")
@SysLog(title = "档案移交文件接收", module = "数据/档案移交->档案移交接收管理", businessType = OperaType.UPDATE, details = "档案移交文件接收", logType = 1)
public AjaxResult transferReceive(@RequestBody TransferFileDto dto) {
try {
return transferApplyService.transferReceive(dto);
} catch (Exception e) {