| | |
| | | */
|
| | | public interface SpecialCardService {
|
| | |
|
| | | public List<SpecialCard> listQuery(long start, int count, String key, Integer sort);
|
| | | public List<SpecialCard> listQuery(long start, int count, String key, Integer sort, List<Long> listPid);
|
| | |
|
| | | public long countlistQuery(String key);
|
| | | public long countlistQuery(String key, List<Long> listPid);
|
| | |
|
| | | /**
|
| | | * 根据id批量删除
|
| | |
| | | */
|
| | | public String getbottomPicture(String placeKey);
|
| | |
|
| | | |
| | | /**
|
| | | * 状态切换
|
| | | * @param id
|
| | | * @throws SpecialCardException
|
| | | */
|
| | | public void switchState(Long id) throws SpecialCardException;
|
| | |
|
| | | }
|