| | |
| | | package com.yeshi.fanli.service.inter.config;
|
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import org.springframework.cache.annotation.Cacheable;
|
| | |
|
| | | import com.yeshi.fanli.entity.common.JumpDetail;
|
| | | import com.yeshi.fanli.exception.NotExistObjectException;
|
| | |
|
| | | public interface JumpDetailService {
|
| | |
|
| | | public List<JumpDetail> getJumpDetailList(int index, String key);
|
| | |
|
| | | public int getCount(String key);
|
| | |
|
| | | public void addJumpDetail(JumpDetail jd);
|
| | |
|
| | | public void updateJumpDetail(JumpDetail jd) throws NotExistObjectException;
|
| | |
|
| | | public JumpDetail getJumpDetail(long id);
|
| | |
|
| | | public void deleteJumpDetail(long id);
|
| | |
|
| | | public List<JumpDetail> getJumpDetailAllList();
|
| | |
|
| | | public JumpDetail getlastJumpDetail();
|
| | |
|
| | | |
| | | public JumpDetail getlastJumpDetailCache();
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.service.inter.config; |
| | | |
| | | import java.util.List; |
| | | |
| | | import com.yeshi.fanli.entity.common.JumpDetail; |
| | | import com.yeshi.fanli.exception.NotExistObjectException; |
| | | |
| | | public interface JumpDetailService { |
| | | |
| | | public List<JumpDetail> getJumpDetailList(int index, String key); |
| | | |
| | | public int getCount(String key); |
| | | |
| | | public void addJumpDetail(JumpDetail jd); |
| | | |
| | | public void updateJumpDetail(JumpDetail jd) throws NotExistObjectException; |
| | | |
| | | public JumpDetail getJumpDetail(long id); |
| | | |
| | | public void deleteJumpDetail(long id); |
| | | |
| | | public List<JumpDetail> getJumpDetailAllList(); |
| | | |
| | | public JumpDetail getlastJumpDetail(); |
| | | |
| | | public JumpDetail getlastJumpDetailCache(); |
| | | } |