feat 新建报表相关类

This commit is contained in:
xxm1995
2024-03-26 19:35:35 +08:00
parent 7aab411f8c
commit d306486e08
4 changed files with 35 additions and 1 deletions

View File

@@ -3,7 +3,7 @@
- [ ] 支持分账
- [ ] 增加撤销功能,用于处理线下支付订单的情况
- [ ] 统计报表功能
- [ ] 修复创建支付订单报错时, 订单保存数据不完整
- [x] 修复创建支付订单报错时, 订单保存数据不完整
- [ ] 针对同步/对账等出现脏数据导致阻塞的问题, 进行优化
- [ ] 同步接口
- [ ] 对账接口

View File

@@ -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 {
}

View File

@@ -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 {
}

View File

@@ -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>