package com.ruoyi.system.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
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.query.TCrmSalespersonQuery;
|
import com.ruoyi.system.vo.TCrmChangePointsVO;
|
|
import java.util.List;
|
|
/**
|
* <p>
|
* crm修改积分记录 服务类
|
* </p>
|
*
|
* @author xiaochen
|
* @since 2025-09-02
|
*/
|
public interface TCrmChangePointsService extends IService<TCrmChangePoints> {
|
|
/**
|
* 分公司积分变更明细分页列表
|
* @param query
|
* @return
|
*/
|
PageInfo<TCrmChangePointsVO> pageListBranch(TCrmChangePointsQuery query);
|
|
/**
|
* 业务员积分变更明细分页列表
|
* @param query
|
* @return
|
*/
|
PageInfo<TCrmChangePointsVO> pageListSalesperson(TCrmChangePointsQuery query);
|
|
/**
|
* 诊所积分变更明细分页列表
|
* @param query
|
* @return
|
*/
|
PageInfo<TCrmChangePointsVO> pageListClinic(TCrmChangePointsQuery query);
|
|
/**
|
* 分公司积分变更明细导出
|
* @param query
|
* @return
|
*/
|
List<TCrmChangePointsBranchExport> pageListBranchExport(TCrmChangePointsQuery query);
|
|
/**
|
* 业务员积分变更明细导出
|
* @param query
|
* @return
|
*/
|
List<TCrmChangePointsSalespersonExport> pageListSalespersonExport(TCrmChangePointsQuery query);
|
|
/**
|
* 诊所积分变更明细导出
|
* @param query
|
* @return
|
*/
|
List<TCrmChangePointsClinicExport> pageListClinicExport(TCrmChangePointsQuery query);
|
}
|