feat 对账处理

This commit is contained in:
xxm1995
2024-03-28 20:10:21 +08:00
parent 9532f6366b
commit 6334461971
19 changed files with 327 additions and 29 deletions

View File

@@ -0,0 +1,21 @@
package cn.bootx.platform.daxpay.admin.controller.allocation;
import cn.bootx.platform.daxpay.service.core.payment.allocation.service.AllocationReceiverService;
import io.swagger.v3.oas.annotations.tags.Tag;
import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
/**
* 对账接收方控制器
* @author xxm
* @since 2024/3/28
*/
@Tag(name = "对账接收方控制器")
@RestController
@RequestMapping("/allocation/receiver")
@RequiredArgsConstructor
public class AllocationReceiverController {
private final AllocationReceiverService allocationReceiverService;
}