| | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import com.ruoyi.inspect.dto.UnPassPageDto; |
| | | import com.ruoyi.inspect.pojo.InsUnPass; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | /** |
| | | * @author 朱佳吉 |
| | | * @date 2024/5/8 13:05 |
| | | */ |
| | | public interface InsUnPassMapper extends BaseMapper<InsUnPass> { |
| | | IPage<UnPassPageDto> pageInsUnPass(IPage<UnPassPageDto> page, QueryWrapper<UnPassPageDto> ew); |
| | | IPage<UnPassPageDto> pageInsUnPass(@Param("page") IPage<UnPassPageDto> page, @Param("ew") QueryWrapper<UnPassPageDto> ew); |
| | | } |