|
@@ -57,7 +57,7 @@ public class PayPayeeAisleController extends BaseController {
|
|
|
/**
|
|
|
* 导出收款方账户列表
|
|
|
*/
|
|
|
- @ApiOperation("导出收款方账户列表")
|
|
|
+/* @ApiOperation("导出收款方账户列表")
|
|
|
@PreAuthorize("@ss.hasPermi('pay:aisle:export')")
|
|
|
@Log(title = "收款方账户", businessType = BusinessType.EXPORT)
|
|
|
@GetMapping("/export")
|
|
@@ -65,7 +65,7 @@ public class PayPayeeAisleController extends BaseController {
|
|
|
List<PayPayeeAisleVo> list = iPayPayeeAisleService.queryList(bo);
|
|
|
ExcelUtil<PayPayeeAisleVo> util = new ExcelUtil<PayPayeeAisleVo>(PayPayeeAisleVo.class);
|
|
|
return util.exportExcel(list, "收款方账户");
|
|
|
- }
|
|
|
+ }*/
|
|
|
|
|
|
/**
|
|
|
* 获取收款方账户详细信息
|
|
@@ -94,7 +94,7 @@ public class PayPayeeAisleController extends BaseController {
|
|
|
@ApiOperation("修改收款方账户")
|
|
|
@PreAuthorize("@ss.hasPermi('pay:aisle:edit')")
|
|
|
@Log(title = "收款方账户", businessType = BusinessType.UPDATE)
|
|
|
- @PutMapping()
|
|
|
+ @PostMapping("/edit")
|
|
|
public AjaxResult<Void> edit(@RequestBody PayPayeeAisleEditBo bo) {
|
|
|
return toAjax(iPayPayeeAisleService.updateByEditBo(bo) ? 1 : 0);
|
|
|
}
|
|
@@ -102,11 +102,11 @@ public class PayPayeeAisleController extends BaseController {
|
|
|
/**
|
|
|
* 删除收款方账户
|
|
|
*/
|
|
|
- @ApiOperation("删除收款方账户")
|
|
|
+/* @ApiOperation("删除收款方账户")
|
|
|
@PreAuthorize("@ss.hasPermi('pay:aisle:remove')")
|
|
|
@Log(title = "收款方账户" , businessType = BusinessType.DELETE)
|
|
|
@DeleteMapping("/{accountIds}")
|
|
|
public AjaxResult<Void> remove(@PathVariable Long[] accountIds) {
|
|
|
return toAjax(iPayPayeeAisleService.deleteWithValidByIds(Arrays.asList(accountIds), true) ? 1 : 0);
|
|
|
- }
|
|
|
+ }*/
|
|
|
}
|