| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package com.ruoyi.mingxue.mapper;
- import com.ruoyi.mingxue.domain.CustomerFavorites;
- import java.util.List;
- /**
- * 客户收藏Mapper接口
- *
- * @author mingxue
- * @date 2021-07-25
- */
- public interface CustomerFavoritesMapper
- {
- /**
- * 查询客户收藏
- *
- * @param id 客户收藏ID
- * @return 客户收藏
- */
- public CustomerFavorites selectCustomerFavoritesById(Long id);
- /**
- * 查询客户收藏列表
- *
- * @param customerFavorites 客户收藏
- * @return 客户收藏集合
- */
- public List<CustomerFavorites> selectCustomerFavoritesList(CustomerFavorites customerFavorites);
- /**
- * 新增客户收藏
- *
- * @param customerFavorites 客户收藏
- * @return 结果
- */
- public int insertCustomerFavorites(CustomerFavorites customerFavorites);
- /**
- * 修改客户收藏
- *
- * @param customerFavorites 客户收藏
- * @return 结果
- */
- public int updateCustomerFavorites(CustomerFavorites customerFavorites);
- /**
- * 删除客户收藏
- *
- * @param id 客户收藏ID
- * @return 结果
- */
- public int deleteCustomerFavoritesById(Long id);
- /**
- * 批量删除客户收藏
- *
- * @param ids 需要删除的数据ID
- * @return 结果
- */
- public int deleteCustomerFavoritesByIds(Long[] ids);
- public List<CustomerFavorites> selectSubjects(CustomerFavorites query);
- }
|