| | |
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import com.yeshi.fanli.entity.SystemEnum;
|
| | | import org.springframework.cache.annotation.Cacheable;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.help.HelpCenter;
|
| | |
| | | * @param pageIndex 页码
|
| | | * @param pageSize 页面条数
|
| | | * @param key 搜索条件
|
| | | * @param startTime 起始时间
|
| | | * @param endTime 结束时间
|
| | | * @return
|
| | | */
|
| | | public List<HelpCenter> query(int pageIndex, int pageSize, String key, Long cid, Integer orderMode,Integer state) ;
|
| | | public List<HelpCenter> query(int pageIndex, int pageSize, String key, Long cid, Integer orderMode, Integer state, SystemEnum system) ;
|
| | |
|
| | | public long countQuery(String key, Long cid,Integer state);
|
| | | public long countQuery(String key, Long cid,Integer state, SystemEnum system);
|
| | |
|
| | |
|
| | | /**
|
| | |
| | |
|
| | | /**
|
| | | * 查询 只返回id、title
|
| | | * @param pageIndex
|
| | | * @param pageSize
|
| | | * @param key
|
| | | * @return
|
| | | * @throws HelpCenterException
|
| | | */
|
| | | public List<HelpCenter> listValid(long pageId, int pageSize, String key, Long cid);
|
| | | public List<HelpCenter> listValid(long pageId, int pageSize, String key, Long cid, SystemEnum system);
|
| | |
|
| | |
|
| | | /**
|