mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-09 13:59:05 +00:00
ref 支付网关方式重构
This commit is contained in:
@@ -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 {
|
||||
}
|
@@ -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 {
|
||||
}
|
@@ -0,0 +1 @@
|
||||
cn.bootx.platform.daxpay.DaxPaySingleGatewayApp
|
Reference in New Issue
Block a user