ref 支付网关方式重构

This commit is contained in:
xxm1995
2023-12-15 11:20:50 +08:00
parent aa675de704
commit e3702275ac
310 changed files with 582 additions and 16280 deletions

View File

@@ -0,0 +1,15 @@
package cn.bootx.platform.daxpay;
import org.apache.ibatis.annotations.Mapper;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.context.properties.ConfigurationPropertiesScan;
/**
* 业务服务
* @author xxm
* @since 2023/12/15
*/
@ConfigurationPropertiesScan
@MapperScan(annotationClass = Mapper.class)
public class DaxpaySingleServiceApp {
}

View File

@@ -0,0 +1,17 @@
package cn.bootx.platform.daxpay.core.pay.service;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Service;
/**
* 支付流程服务
*
* @author xxm
* @since 2020/12/9
*/
@Slf4j
@Service
@RequiredArgsConstructor
public class PayService {
}