| | |
| | | List<DaTaoKeDetail> getGoodsNotInList(@Param("cid") Long cid, @Param("list") List<Long> list, @Param("count") int count); |
| | | |
| | | |
| | | /** |
| | | * 根据标题查询 |
| | | * |
| | | * @param dtitle |
| | | * @return |
| | | */ |
| | | List<DaTaoKeDetail> listByDtitle(String dtitle); |
| | | |
| | | /** |
| | | * 根据标题与分类搜索列表 |
| | | * |
| | | * @param title |
| | | * @param cid |
| | | * @param start |
| | | * @param count |
| | | * @return |
| | | */ |
| | | List<DaTaoKeDetail> listSearchByTitleWithCid(@Param("title") String key, @Param("cid") Long cid, |
| | | @Param("start") long start, @Param("count") int count); |
| | | |
| | | /** |
| | | * 根据标题与分类获取搜索列表数量 |
| | | * |
| | | * @param title |
| | | * @param cid |
| | | * @return |
| | | */ |
| | | Long countSearchByTitleWithCid(@Param("title") String key, @Param("cid") Long cid); |
| | | |
| | | } |