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