mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-07 21:17:42 +00:00
feat 新建报表相关类
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
- [ ] 支持分账
|
||||
- [ ] 增加撤销功能,用于处理线下支付订单的情况
|
||||
- [ ] 统计报表功能
|
||||
- [ ] 修复创建支付订单报错时, 订单保存数据不完整
|
||||
- [x] 修复创建支付订单报错时, 订单保存数据不完整
|
||||
- [ ] 针对同步/对账等出现脏数据导致阻塞的问题, 进行优化
|
||||
- [ ] 同步接口
|
||||
- [ ] 对账接口
|
||||
|
@@ -0,0 +1,12 @@
|
||||
package cn.bootx.platform.daxpay.service.core.report.dao;
|
||||
|
||||
import org.apache.ibatis.annotations.Mapper;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author xxm
|
||||
* @since 2024/3/26
|
||||
*/
|
||||
@Mapper
|
||||
public interface DataReportMapper {
|
||||
}
|
@@ -0,0 +1,16 @@
|
||||
package cn.bootx.platform.daxpay.service.core.report.service;
|
||||
|
||||
import lombok.RequiredArgsConstructor;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
||||
/**
|
||||
* 数据报表服务类
|
||||
* @author xxm
|
||||
* @since 2024/3/26
|
||||
*/
|
||||
@Slf4j
|
||||
@Service
|
||||
@RequiredArgsConstructor
|
||||
public class DataReportService {
|
||||
}
|
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="cn.bootx.platform.daxpay.service.core.report.dao.DataReportMapper">
|
||||
|
||||
|
||||
</mapper>
|
Reference in New Issue
Block a user