HomePageCache.java 424 Bytes
package com.tanpu.community.cache;

import com.tanpu.community.dao.entity.community.HomePageEntity;
import com.tanpu.community.service.HomePageService;
import org.springframework.beans.factory.annotation.Autowired;

import java.util.Map;

/**
 * 用户信息缓存类
 */
public class HomePageCache {


    private Map<String, HomePageEntity> homePageCache;

    @Autowired
    private HomePageService homePageService;



}