You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.1 KiB
62 lines
1.1 KiB
3 years ago
|
package com.ruoyi.business.mapper;
|
||
|
|
||
|
import java.util.List;
|
||
|
import com.ruoyi.business.domain.BusCombo;
|
||
|
|
||
|
/**
|
||
|
* 套餐Mapper接口
|
||
|
*
|
||
|
* @author ruoyi
|
||
|
* @date 2022-09-21
|
||
|
*/
|
||
|
public interface BusComboMapper
|
||
|
{
|
||
|
/**
|
||
|
* 查询套餐
|
||
|
*
|
||
|
* @param id 套餐主键
|
||
|
* @return 套餐
|
||
|
*/
|
||
|
public BusCombo selectBusComboById(Integer id);
|
||
|
|
||
|
/**
|
||
|
* 查询套餐列表
|
||
|
*
|
||
|
* @param busCombo 套餐
|
||
|
* @return 套餐集合
|
||
|
*/
|
||
|
public List<BusCombo> selectBusComboList(BusCombo busCombo);
|
||
|
|
||
|
/**
|
||
|
* 新增套餐
|
||
|
*
|
||
|
* @param busCombo 套餐
|
||
|
* @return 结果
|
||
|
*/
|
||
|
public int insertBusCombo(BusCombo busCombo);
|
||
|
|
||
|
/**
|
||
|
* 修改套餐
|
||
|
*
|
||
|
* @param busCombo 套餐
|
||
|
* @return 结果
|
||
|
*/
|
||
|
public int updateBusCombo(BusCombo busCombo);
|
||
|
|
||
|
/**
|
||
|
* 删除套餐
|
||
|
*
|
||
|
* @param id 套餐主键
|
||
|
* @return 结果
|
||
|
*/
|
||
|
public int deleteBusComboById(Integer id);
|
||
|
|
||
|
/**
|
||
|
* 批量删除套餐
|
||
|
*
|
||
|
* @param ids 需要删除的数据主键集合
|
||
|
* @return 结果
|
||
|
*/
|
||
|
public int deleteBusComboByIds(Integer[] ids);
|
||
|
}
|