From 62b287b8fc5d0b4d3ac3cfd5b748f256b8693505 Mon Sep 17 00:00:00 2001
From: xuhy <3313886187@qq.com>
Date: 星期四, 09 十月 2025 18:06:17 +0800
Subject: [PATCH] 平台积分报表

---
 ruoyi-system/src/main/java/com/ruoyi/system/mapper/TCrmChangePointsMapper.java |   49 +++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 49 insertions(+), 0 deletions(-)

diff --git a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TCrmChangePointsMapper.java b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TCrmChangePointsMapper.java
index e9c9a41..79c3d34 100644
--- a/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TCrmChangePointsMapper.java
+++ b/ruoyi-system/src/main/java/com/ruoyi/system/mapper/TCrmChangePointsMapper.java
@@ -1,7 +1,16 @@
 package com.ruoyi.system.mapper;
 
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.ruoyi.common.basic.PageInfo;
+import com.ruoyi.system.export.TCrmChangePointsBranchExport;
+import com.ruoyi.system.export.TCrmChangePointsClinicExport;
+import com.ruoyi.system.export.TCrmChangePointsSalespersonExport;
 import com.ruoyi.system.model.TCrmChangePoints;
+import com.ruoyi.system.query.TCrmChangePointsQuery;
+import com.ruoyi.system.vo.TCrmChangePointsVO;
+import org.apache.ibatis.annotations.Param;
+
+import java.util.List;
 
 /**
  * <p>
@@ -12,5 +21,45 @@
  * @since 2025-09-02
  */
 public interface TCrmChangePointsMapper extends BaseMapper<TCrmChangePoints> {
+    /**
+     * 分公司积分变更明细分页列表
+     * @param query
+     * @return
+     */
+    List<TCrmChangePointsVO> pageListBranch(@Param("query") TCrmChangePointsQuery query, @Param("pageInfo")PageInfo<TCrmChangePointsVO> pageInfo);
 
+    /**
+     * 业务员积分变更明细分页列表
+     * @param query
+     * @return
+     */
+    List<TCrmChangePointsVO> pageListSalesperson(@Param("query") TCrmChangePointsQuery query, @Param("pageInfo")PageInfo<TCrmChangePointsVO> pageInfo);
+
+    /**
+     * 诊所积分变更明细分页列表
+     * @param query
+     * @return
+     */
+    List<TCrmChangePointsVO> pageListClinic(@Param("query") TCrmChangePointsQuery query, @Param("pageInfo")PageInfo<TCrmChangePointsVO> pageInfo);
+
+    /**
+     * 分公司积分变更明细导出列表
+     * @param query
+     * @return
+     */
+    List<TCrmChangePointsBranchExport> pageListBranchExport(@Param("query")TCrmChangePointsQuery query);
+
+    /**
+     * 业务员积分变更明细导出列表
+     * @param query
+     * @return
+     */
+    List<TCrmChangePointsSalespersonExport> pageListSalespersonExport(@Param("query")TCrmChangePointsQuery query);
+
+    /**
+     * 诊所积分变更明细导出列表
+     * @param query
+     * @return
+     */
+    List<TCrmChangePointsClinicExport> pageListClinicExport(@Param("query")TCrmChangePointsQuery query);
 }

--
Gitblit v1.7.1