Bladeren bron

申请记录、充值列表,销售权限 优化

zhaoxian 2 jaren geleden
bovenliggende
commit
59baa1e1fe

+ 4 - 3
jeecg-boot-module-system/src/main/java/cn/com/ctop/finance/payment/controller/FinancePaymentApplicationController.java

@@ -265,15 +265,16 @@ public class FinancePaymentApplicationController {
 
     @GetMapping(value = "/queryCwjsPolicyInfo")
     public Result<Object> queryCwjsPolicyInfo(String advertiserName, String productName, String type) {
-        try {
+        return Result.ok();
+/*        try {
             if (Check.isNull(advertiserName) || Check.isNull(productName) || Check.isNull(type)) {
                 return Result.error("缺少参数");
             }
-            return financePaymentApplicationService.queryCwjsPolicyInfo(advertiserName, productName, type);
+//            return financePaymentApplicationService.queryCwjsPolicyInfo(advertiserName, productName, type);
         } catch (Exception e) {
             e.printStackTrace();
         }
-        return Result.error("查询异常");
+        return Result.error("查询异常");*/
     }