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

com.robot.transform.extend.unwrapper.PageUnWrapper Maven / Gradle / Ivy

package com.robot.transform.extend.unwrapper;


import com.mybatisflex.core.paginate.Page;
import com.robot.transform.component.UnWrapper;


/**
 * mybatis-plus的IPage解包器
 *
 * @author R
 * @since 2022-9-27
 */
public class PageUnWrapper implements UnWrapper> {

    @Override
    public Object unWrap(Page source) {
        return source.getRecords();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy