|
@@ -3,6 +3,7 @@ package com.zswl.cloud.springBtach.server.core.controller;
|
|
|
import cn.hutool.json.JSONObject;
|
|
|
import com.github.microservice.auth.client.constant.AuthConstant;
|
|
|
import com.github.microservice.auth.client.content.ResultContent;
|
|
|
+import com.github.microservice.auth.client.content.ResultState;
|
|
|
import com.github.microservice.auth.security.annotations.ResourceAuth;
|
|
|
import com.github.microservice.auth.security.type.AuthType;
|
|
|
import com.zhongshu.payment.client.model.order.AdminSeachOrderModel;
|
|
@@ -49,7 +50,8 @@ public class PaymentController {
|
|
|
@ResourceAuth(value = "user", type = AuthType.User)
|
|
|
@RequestMapping(value = "query/{orderNo}", method = RequestMethod.GET)
|
|
|
public ResultContent<QueryRequestModel> query(@PathVariable("orderNo") String orderNo) {
|
|
|
- return paymentServer.query(orderNo);
|
|
|
+// return paymentServer.query(orderNo);
|
|
|
+ return ResultContent.build(ResultState.Success);
|
|
|
}
|
|
|
|
|
|
|