package com.zy.crm.manager.mapper; import com.baomidou.mybatisplus.mapper.BaseMapper; import com.zy.crm.manager.entity.CompanyMoney; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; @Mapper @Repository public interface CompanyMoneyMapper extends BaseMapper { Double selectMoneyReceivablesAll(@Param("userId")Long userId, @Param("year")String year); Double selectMoneyActualReceiptsAll(@Param("userId")Long userId, @Param("year")String year); }