|
|
@@ -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("查询异常");*/
|
|
|
}
|
|
|
|
|
|
|