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

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