package com.ruoyi.system.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.ruoyi.system.model.TFlowManagement; import com.ruoyi.system.query.TFlowManagementQuery; import com.ruoyi.system.vo.TFlowManagementStatisticsVo; import org.apache.ibatis.annotations.Param; /** *

* 流水管理 Mapper 接口 *

* * @author xiaochen * @since 2025-01-17 */ public interface TFlowManagementMapper extends BaseMapper { TFlowManagementStatisticsVo getPaymentStats(@Param("req") TFlowManagementQuery query,@Param("businessDeptId") String businessDeptId); }