feat 分账订单接口和字段微调

This commit is contained in:
bootx
2024-04-07 23:14:35 +08:00
parent 6825ce4cfe
commit d1010c2572
12 changed files with 341 additions and 29 deletions

View File

@@ -0,0 +1,79 @@
package cn.bootx.platform.daxpay.admin.controller.allocation;
import cn.bootx.platform.common.core.rest.PageResult;
import cn.bootx.platform.common.core.rest.Res;
import cn.bootx.platform.common.core.rest.ResResult;
import cn.bootx.platform.common.core.rest.dto.LabelValue;
import cn.bootx.platform.common.core.rest.param.PageParam;
import cn.bootx.platform.daxpay.param.pay.allocation.AllocationStartParam;
import cn.bootx.platform.daxpay.service.core.order.allocation.service.AllocationOrderService;
import cn.bootx.platform.daxpay.service.core.payment.allocation.service.AllocationService;
import cn.bootx.platform.daxpay.service.dto.order.allocation.AllocationOrderDetailDto;
import cn.bootx.platform.daxpay.service.dto.order.allocation.AllocationOrderDto;
import cn.bootx.platform.daxpay.service.param.order.AllocationOrderQuery;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
/**
* 对账订单控制器
* @author xxm
* @since 2024/4/7
*/
@Tag(name = "对账订单控制器")
@RestController
@RequestMapping("/allocation/order")
@RequiredArgsConstructor
public class AllocationOrderController {
private final AllocationOrderService allocationOrderService;
private final AllocationService allocationService;
@Operation(summary = "分页")
@GetMapping("/page")
public ResResult<PageResult<AllocationOrderDto>> page(PageParam pageParam, AllocationOrderQuery param){
return Res.ok(allocationOrderService.page(pageParam,param));
}
@Operation(summary = "分账明细列表")
@GetMapping("/detail/findAll")
public ResResult<List<AllocationOrderDetailDto>> findDetailsByOrderId(Long orderId){
return Res.ok(allocationOrderService.findDetailsByOrderId(orderId));
}
@Operation(summary = "查询详情")
@GetMapping("/findById")
public ResResult<AllocationOrderDto> findById(Long id){
return Res.ok(allocationOrderService.findById(id));
}
@Operation(summary = "查询明细详情")
@GetMapping("/detail/findById")
public ResResult<AllocationOrderDetailDto> findDetailById(Long id){
return Res.ok(allocationOrderService.findDetailById(id));
}
@Operation(summary = "获取可以分账的通道")
@GetMapping("/findChannels")
public ResResult<List<LabelValue>> findChannels(){
return Res.ok(allocationOrderService.findChannels());
}
@Operation(summary = "发起分账")
@PostMapping("/start")
public ResResult<Void> start(Long paymentId){
AllocationStartParam param = new AllocationStartParam();
param.setPaymentId(paymentId);
allocationService.allocation(param);
return Res.ok();
}
}

View File

@@ -46,6 +46,7 @@ public class AllocationReceiverController {
public ResResult<List<LabelValue>> findChannels(){
return Res.ok(receiverService.findChannels());
}
@Operation(summary = "根据通道获取分账接收方类型")
@GetMapping("/findReceiverTypeByChannel")
public ResResult<List<LabelValue>> findReceiverTypeByChannel(String channel){