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

xin.altitude.cms.code.entity.bo.MapperConfig Maven / Gradle / Ivy

There is a newer version: 1.3.4.1
Show newest version
/*
 * Copyright (Java知识图谱) 2022.
 */

package xin.altitude.cms.code.entity.bo;

/**
 * @author explore
 * @since 2019/07/08 19:24
 **/
// @Data
public class MapperConfig {
    /**
     * 是否需要使用二级缓存
     */
    private Boolean useCache = true;
    
    public Boolean getUseCache() {
        return useCache;
    }
    
    public void setUseCache(Boolean useCache) {
        this.useCache = useCache;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy