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

org.singledog.mybatis.boot.autoconfig.PageInterceptorProperties Maven / Gradle / Ivy

The newest version!
package org.singledog.mybatis.boot.autoconfig;

import org.springframework.boot.context.properties.ConfigurationProperties;

import java.util.Properties;

/**
 * Created by Adam on 2017/7/27.
 */
@ConfigurationProperties("page")
public class PageInterceptorProperties {

    private Properties properties;

    public Properties getProperties() {
        return properties;
    }

    public void setProperties(Properties properties) {
        this.properties = properties;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy