| | |
| | | import java.util.List;
|
| | |
|
| | | import javax.annotation.Resource;
|
| | | import javax.transaction.Transactional;
|
| | |
|
| | | import org.springframework.cache.annotation.Cacheable;
|
| | | import org.springframework.stereotype.Service;
|
| | | import org.springframework.transaction.annotation.Transactional;
|
| | |
|
| | | import com.yeshi.fanli.dao.mybatis.common.JumpDetailMapper;
|
| | | import com.yeshi.fanli.entity.common.JumpDetail;
|
| | | import com.yeshi.fanli.exception.NotExistObjectException;
|
| | | import com.yeshi.fanli.service.inter.config.JumpDetailService;
|
| | | import com.yeshi.fanli.service.inter.goods.RecommendBannerService;
|
| | | import com.yeshi.fanli.service.inter.goods.RecommendSpecialService;
|
| | | import com.yeshi.fanli.util.Constant;
|
| | |
|
| | | @Service
|
| | |
| | | @Resource
|
| | | private JumpDetailMapper jumpDetailMapper;
|
| | |
|
| | | @Resource
|
| | | private RecommendBannerService recommendBannerService;
|
| | |
|
| | | @Resource
|
| | | private RecommendSpecialService recommendSpecialService;
|
| | |
|
| | | public List<JumpDetail> getJumpDetailList(int index, String key) {
|
| | |
|