All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.dennisit.vplus.data.utils.QueryUtils Maven / Gradle / Ivy

There is a newer version: 2.0.8
Show newest version
package com.github.dennisit.vplus.data.utils;


import com.baomidou.mybatisplus.extension.plugins.pagination.Page;

@Deprecated
public class QueryUtils {

    @Deprecated
    public static  Page page(int page, int size) {
        return new Page(Math.abs(page), Math.abs(size));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy