package com.gunshi.project.ss.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.gunshi.project.ss.entity.so.WarningRulePageSo; import com.gunshi.project.ss.model.WarningRuleInfo; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; import java.util.List; @Mapper public interface WarningRuleInfoMapper extends BaseMapper { @Select(""" """) Page page(Page page,@Param("obj") WarningRulePageSo page1); @Select(""" """) List infoStat(@Param("obj") WarningRulePageSo page); @Select(""" """) Page auditPage(Page page,@Param("obj") WarningRulePageSo page1); }