|
@@ -6,6 +6,7 @@ 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.WithdrawListModel;
|
|
|
import com.zhongshu.payment.client.model.order.AdminSeachOrderModel;
|
|
|
import com.zhongshu.payment.client.model.order.ApplicantRefundParamModel;
|
|
|
import com.zhongshu.payment.client.model.order.v2.*;
|
|
@@ -23,6 +24,7 @@ import io.swagger.annotations.ApiOperation;
|
|
|
import lombok.extern.log4j.Log4j2;
|
|
|
import org.springframework.beans.BeanUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.data.domain.Page;
|
|
|
import org.springframework.http.MediaType;
|
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
@@ -170,8 +172,8 @@ public class PaymentController {
|
|
|
@ApiOperation("已提现订单列表")
|
|
|
@ResourceAuth(value = AuthConstant.SuperAdmin, type = AuthType.Platform)
|
|
|
@ResourceAuth(value = "admin", type = AuthType.Enterprise)
|
|
|
- @RequestMapping(value = "account/withdrawedList", method = RequestMethod.POST)
|
|
|
- public ResultContent withdrawedList(@RequestBody @Valid WithdrawedRequestModel withdrawRequestModel) {
|
|
|
+ @RequestMapping(value = "account/shop/withdrawedList", method = RequestMethod.POST)
|
|
|
+ public ResultContent<Page<WithdrawListModel>> withdrawedList(@RequestBody @Valid WithdrawedRequestModel withdrawRequestModel) {
|
|
|
return paymentServer.withdrawedList(withdrawRequestModel);
|
|
|
}
|
|
|
|