package com.dsh.course.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dsh.course.entity.SysIntegral; import org.apache.ibatis.annotations.Param; public interface SysIntegralMapper extends BaseMapper { SysIntegral query(@Param("companyId") Integer companyId); }