| | |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import com.yeshi.fanli.dao.BaseMapper; |
| | | import com.yeshi.fanli.entity.brand.BrandClass; |
| | | import com.yeshi.fanli.entity.brand.BrandInfo; |
| | | import com.yeshi.fanli.vo.brand.BrandInfoVO; |
| | | |
| | |
| | | * @param state |
| | | * @return |
| | | */ |
| | | List<BrandInfo> listQuery(@Param("start") long start, @Param("count") int count, @Param("key") String key, |
| | | @Param("cid")Long cid, @Param("state") Integer state); |
| | | List<BrandInfo> listQuery(@Param("start") long start, @Param("count") int count, @Param("keys") List<String> keys, |
| | | @Param("cid")Long cid, @Param("state") Integer state, @Param("showState")Integer showState); |
| | | |
| | | long countQuery(@Param("key") String key, @Param("cid") Long cid, @Param("state") Integer state); |
| | | long countQuery(@Param("keys") List<String> keys, @Param("cid") Long cid, @Param("state") Integer state, @Param("showState")Integer showState); |
| | | |
| | | |
| | | int deleteBatchByPrimaryKey(List<Long> list); |
| | | |
| | | |
| | | BrandInfo getByAdjoinOrder(@Param("cid") Long cid, @Param("order") double order, @Param("type") Integer type); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 查询返回前端品牌 |
| | |
| | | */ |
| | | long countValidByCidToApp(@Param("cid") Long cid); |
| | | |
| | | |
| | | BrandInfo selectByUniqueName(@Param("name") String name, @Param("cid") Long cid, @Param("id") Long id); |
| | | |
| | | |
| | | |
| | | /** |
| | | * 查询返回前端品牌 |
| | | * @param start |
| | | * @param count |
| | | * @param cid |
| | | * @return |
| | | */ |
| | | List<BrandInfoVO> listByAlikeName(@Param("key") String key); |
| | | |
| | | } |