| | |
| | |
|
| | | import com.yeshi.fanli.entity.bus.help.HelpCenter;
|
| | | import com.yeshi.fanli.entity.bus.help.HelpInfo;
|
| | | import com.yeshi.fanli.exception.HelpCenterException;
|
| | | import com.yeshi.fanli.exception.config.HelpCenterException;
|
| | |
|
| | | public interface HelpCenterService {
|
| | |
|
| | |
| | | * @param endTime 结束时间
|
| | | * @return
|
| | | */
|
| | | public List<HelpCenter> query(int pageIndex, int pageSize, String key, Integer orderMode) throws HelpCenterException;
|
| | | public List<HelpCenter> query(int pageIndex, int pageSize, String key, Long cid, |
| | | Integer orderMode) throws HelpCenterException;
|
| | |
|
| | | public long countQuery(String key) throws HelpCenterException;
|
| | | public long countQuery(String key, Long cid) throws HelpCenterException;
|
| | |
|
| | |
|
| | | /**
|
| | |
| | | * @return
|
| | | * @throws HelpCenterException
|
| | | */
|
| | | public List<HelpCenter> queryIdAndTitle(int pageIndex, int pageSize, String key) throws HelpCenterException;
|
| | | public List<HelpCenter> queryIdAndTitle(int pageIndex, int pageSize, String key, Long cid) throws HelpCenterException;
|
| | |
|
| | |
|
| | | /**
|