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;
}
-
刘基明 authoredc4ed5301