⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 enterprisecache.java

📁 一个专门用来快速开发网站的框架
💻 JAVA
字号:
package com.common.cache;

//import com.ksgl.sysmng.organize.enterprise.*;
import org.apache.commons.logging.LogFactory;
import org.apache.commons.logging.Log;


public class EnterpriseCache {
    private static Log log = LogFactory.getLog(EnterpriseCache.class);
    private static EnterpriseCache enterpriseCache = new EnterpriseCache();

    private String companyName;
    private String companyShortName;
    private String ybz;
    private String ycr;

    public static synchronized EnterpriseCache getInstance() {
        if (null == enterpriseCache) {
            enterpriseCache = new EnterpriseCache();
        }
        return enterpriseCache;
    }

    public EnterpriseCache() {
        loadData();
    }

    /**
     * 装载数据。
     */
    private void loadData() {
    }

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -