HomePageCache.java 424 Bytes
Newer Older
刘基明's avatar
刘基明 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
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;



}