📄 enterprisecache.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 + -