| | |
| | | @ApiOperation("修改差旅报销付款信息") |
| | | //@PreAuthorize("@ss.hasPermi('project:reimbursementpayee:edit')") |
| | | @Log(title = "差旅报销付款信息", businessType = BusinessType.UPDATE) |
| | | @PutMapping |
| | | @PostMapping("/reimbursementpayeeEdit") |
| | | @RepeatSubmit |
| | | public AjaxResult edit(@RequestBody ServiceReimbursementpayee serviceReimbursementpayee) |
| | | { |
| | |
| | | @ApiOperation("删除差旅报销付款信息") |
| | | //@PreAuthorize("@ss.hasPermi('project:reimbursementpayee:remove')") |
| | | @Log(title = "差旅报销付款信息", businessType = BusinessType.DELETE) |
| | | @DeleteMapping("/{ids}") |
| | | @GetMapping("/remove/{ids}") |
| | | public AjaxResult remove(@PathVariable String[] ids) |
| | | { |
| | | return toAjax(serviceReimbursementpayeeService.removeByIds(Arrays.asList(ids))); |