Bladeren bron

营销基础参数业务

change 4 jaren geleden
bovenliggende
commit
a06a9f7546

+ 5 - 5
zhongzheng-admin/src/main/java/com/zhongzheng/controller/pay/PayAisleController.java

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

+ 5 - 5
zhongzheng-admin/src/main/java/com/zhongzheng/controller/pay/PayCostController.java

@@ -57,7 +57,7 @@ public class PayCostController extends BaseController {
     /**
      * 导出费用类型列表
      */
-    @ApiOperation("导出费用类型列表")
+ /*   @ApiOperation("导出费用类型列表")
     @PreAuthorize("@ss.hasPermi('pay:cost:export')")
     @Log(title = "费用类型", businessType = BusinessType.EXPORT)
     @GetMapping("/export")
@@ -65,7 +65,7 @@ public class PayCostController extends BaseController {
         List<PayCostVo> list = iPayCostService.queryList(bo);
         ExcelUtil<PayCostVo> util = new ExcelUtil<PayCostVo>(PayCostVo.class);
         return util.exportExcel(list, "费用类型");
-    }
+    }*/
 
     /**
      * 获取费用类型详细信息
@@ -94,7 +94,7 @@ public class PayCostController extends BaseController {
     @ApiOperation("修改费用类型")
     @PreAuthorize("@ss.hasPermi('pay:cost:edit')")
     @Log(title = "费用类型", businessType = BusinessType.UPDATE)
-    @PutMapping()
+    @PostMapping("/edit")
     public AjaxResult<Void> edit(@RequestBody PayCostEditBo bo) {
         return toAjax(iPayCostService.updateByEditBo(bo) ? 1 : 0);
     }
@@ -102,11 +102,11 @@ public class PayCostController extends BaseController {
     /**
      * 删除费用类型
      */
-    @ApiOperation("删除费用类型")
+/*    @ApiOperation("删除费用类型")
     @PreAuthorize("@ss.hasPermi('pay:cost:remove')")
     @Log(title = "费用类型" , businessType = BusinessType.DELETE)
     @DeleteMapping("/{costIds}")
     public AjaxResult<Void> remove(@PathVariable Long[] costIds) {
         return toAjax(iPayCostService.deleteWithValidByIds(Arrays.asList(costIds), true) ? 1 : 0);
-    }
+    }*/
 }

+ 5 - 5
zhongzheng-admin/src/main/java/com/zhongzheng/controller/pay/PayNatureController.java

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

+ 5 - 5
zhongzheng-admin/src/main/java/com/zhongzheng/controller/pay/PayPayeeAisleController.java

@@ -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);
-    }
+    }*/
 }

+ 5 - 5
zhongzheng-admin/src/main/java/com/zhongzheng/controller/pay/PayPayeeController.java

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

+ 5 - 5
zhongzheng-admin/src/main/java/com/zhongzheng/controller/pay/PayServeController.java

@@ -57,7 +57,7 @@ public class PayServeController extends BaseController {
     /**
      * 导出服务模式列表
      */
-    @ApiOperation("导出服务模式列表")
+  /*  @ApiOperation("导出服务模式列表")
     @PreAuthorize("@ss.hasPermi('pay:serve:export')")
     @Log(title = "服务模式", businessType = BusinessType.EXPORT)
     @GetMapping("/export")
@@ -65,7 +65,7 @@ public class PayServeController extends BaseController {
         List<PayServeVo> list = iPayServeService.queryList(bo);
         ExcelUtil<PayServeVo> util = new ExcelUtil<PayServeVo>(PayServeVo.class);
         return util.exportExcel(list, "服务模式");
-    }
+    }*/
 
     /**
      * 获取服务模式详细信息
@@ -94,7 +94,7 @@ public class PayServeController extends BaseController {
     @ApiOperation("修改服务模式")
     @PreAuthorize("@ss.hasPermi('pay:serve:edit')")
     @Log(title = "服务模式", businessType = BusinessType.UPDATE)
-    @PutMapping()
+    @PostMapping("/edit")
     public AjaxResult<Void> edit(@RequestBody PayServeEditBo bo) {
         return toAjax(iPayServeService.updateByEditBo(bo) ? 1 : 0);
     }
@@ -102,11 +102,11 @@ public class PayServeController extends BaseController {
     /**
      * 删除服务模式
      */
-    @ApiOperation("删除服务模式")
+/*    @ApiOperation("删除服务模式")
     @PreAuthorize("@ss.hasPermi('pay:serve:remove')")
     @Log(title = "服务模式" , businessType = BusinessType.DELETE)
     @DeleteMapping("/{serveIds}")
     public AjaxResult<Void> remove(@PathVariable Long[] serveIds) {
         return toAjax(iPayServeService.deleteWithValidByIds(Arrays.asList(serveIds), true) ? 1 : 0);
-    }
+    }*/
 }

+ 5 - 5
zhongzheng-admin/src/main/java/com/zhongzheng/controller/pay/PaySourceController.java

@@ -57,7 +57,7 @@ public class PaySourceController extends BaseController {
     /**
      * 导出渠道来源列表
      */
-    @ApiOperation("导出渠道来源列表")
+/*    @ApiOperation("导出渠道来源列表")
     @PreAuthorize("@ss.hasPermi('pay:source:export')")
     @Log(title = "渠道来源", businessType = BusinessType.EXPORT)
     @GetMapping("/export")
@@ -65,7 +65,7 @@ public class PaySourceController extends BaseController {
         List<PaySourceVo> list = iPaySourceService.queryList(bo);
         ExcelUtil<PaySourceVo> util = new ExcelUtil<PaySourceVo>(PaySourceVo.class);
         return util.exportExcel(list, "渠道来源");
-    }
+    }*/
 
     /**
      * 获取渠道来源详细信息
@@ -94,7 +94,7 @@ public class PaySourceController extends BaseController {
     @ApiOperation("修改渠道来源")
     @PreAuthorize("@ss.hasPermi('pay:source:edit')")
     @Log(title = "渠道来源", businessType = BusinessType.UPDATE)
-    @PutMapping()
+    @PostMapping("/edit")
     public AjaxResult<Void> edit(@RequestBody PaySourceEditBo bo) {
         return toAjax(iPaySourceService.updateByEditBo(bo) ? 1 : 0);
     }
@@ -102,11 +102,11 @@ public class PaySourceController extends BaseController {
     /**
      * 删除渠道来源
      */
-    @ApiOperation("删除渠道来源")
+/*    @ApiOperation("删除渠道来源")
     @PreAuthorize("@ss.hasPermi('pay:source:remove')")
     @Log(title = "渠道来源" , businessType = BusinessType.DELETE)
     @DeleteMapping("/{sourceIds}")
     public AjaxResult<Void> remove(@PathVariable Long[] sourceIds) {
         return toAjax(iPaySourceService.deleteWithValidByIds(Arrays.asList(sourceIds), true) ? 1 : 0);
-    }
+    }*/
 }

+ 5 - 5
zhongzheng-admin/src/main/java/com/zhongzheng/controller/pay/PaySupplyController.java

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

+ 5 - 3
zhongzheng-admin/src/main/java/com/zhongzheng/controller/pay/PayVisitController.java

@@ -57,6 +57,7 @@ public class PayVisitController extends BaseController {
     /**
      * 导出到访校区列表
      */
+/*
     @ApiOperation("导出到访校区列表")
     @PreAuthorize("@ss.hasPermi('pay:visit:export')")
     @Log(title = "到访校区", businessType = BusinessType.EXPORT)
@@ -66,6 +67,7 @@ public class PayVisitController extends BaseController {
         ExcelUtil<PayVisitVo> util = new ExcelUtil<PayVisitVo>(PayVisitVo.class);
         return util.exportExcel(list, "到访校区");
     }
+*/
 
     /**
      * 获取到访校区详细信息
@@ -94,7 +96,7 @@ public class PayVisitController extends BaseController {
     @ApiOperation("修改到访校区")
     @PreAuthorize("@ss.hasPermi('pay:visit:edit')")
     @Log(title = "到访校区", businessType = BusinessType.UPDATE)
-    @PutMapping()
+    @PostMapping("/edit")
     public AjaxResult<Void> edit(@RequestBody PayVisitEditBo bo) {
         return toAjax(iPayVisitService.updateByEditBo(bo) ? 1 : 0);
     }
@@ -102,11 +104,11 @@ public class PayVisitController extends BaseController {
     /**
      * 删除到访校区
      */
-    @ApiOperation("删除到访校区")
+ /*   @ApiOperation("删除到访校区")
     @PreAuthorize("@ss.hasPermi('pay:visit:remove')")
     @Log(title = "到访校区" , businessType = BusinessType.DELETE)
     @DeleteMapping("/{visitIds}")
     public AjaxResult<Void> remove(@PathVariable Long[] visitIds) {
         return toAjax(iPayVisitService.deleteWithValidByIds(Arrays.asList(visitIds), true) ? 1 : 0);
-    }
+    }*/
 }