| | |
| | | package com.yeshi.buwan.service.imp; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.Collections; |
| | | import java.util.List; |
| | | |
| | | import javax.annotation.Resource; |
| | |
| | | |
| | | import com.yeshi.buwan.dao.CategoryContryDao; |
| | | import com.yeshi.buwan.domain.CategoryContry; |
| | | import com.yeshi.buwan.domain.DetailSystem; |
| | | import com.yeshi.buwan.domain.system.DetailSystem; |
| | | import com.yeshi.buwan.domain.VideoInfo; |
| | | import com.yeshi.buwan.domain.VideoResource; |
| | | import com.yeshi.buwan.util.Constant; |
| | | import com.yeshi.buwan.util.StringUtil; |
| | | |
| | | @Service |
| | |
| | | private ClassService classService; |
| | | @Resource |
| | | private CategoryContryDao categoryContryDao; |
| | | |
| | | public CategoryContryDao getCategoryContryDao() { |
| | | return categoryContryDao; |
| | | } |
| | | |
| | | public void setCategoryContryDao(CategoryContryDao categoryContryDao) { |
| | | this.categoryContryDao = categoryContryDao; |
| | | } |
| | | |
| | | public ClassService getClassService() { |
| | | return classService; |
| | | } |
| | | |
| | | public void setClassService(ClassService classService) { |
| | | this.classService = classService; |
| | | } |
| | | |
| | | @Cacheable(value = "classCache", key = "'categoryContryList'+'-'+#cid") |
| | | public List<CategoryContry> categoryContryList(String cid) { |