| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package com.ruoyi.system.mapper;
- import com.ruoyi.system.domain.SysPlan;
- import java.util.List;
- /**
- * 【请填写功能名称】Mapper接口
- *
- * @author ruoyi
- * @date 2022-06-09
- */
- public interface SysPlanMapper
- {
- /**
- * 查询【请填写功能名称】
- *
- * @param id 【请填写功能名称】主键
- * @return 【请填写功能名称】
- */
- public SysPlan selectSysPlanById(Long id);
- /**
- * 查询【请填写功能名称】列表
- *
- * @param sysPlan 【请填写功能名称】
- * @return 【请填写功能名称】集合
- */
- public List<SysPlan> selectSysPlanList(SysPlan sysPlan);
- /**
- * 新增【请填写功能名称】
- *
- * @param sysPlan 【请填写功能名称】
- * @return 结果
- */
- public int insertSysPlan(SysPlan sysPlan);
- /**
- * 修改【请填写功能名称】
- *
- * @param sysPlan 【请填写功能名称】
- * @return 结果
- */
- public int updateSysPlan(SysPlan sysPlan);
- /**
- * 删除【请填写功能名称】
- *
- * @param id 【请填写功能名称】主键
- * @return 结果
- */
- public int deleteSysPlanById(Long id);
- /**
- * 批量删除【请填写功能名称】
- *
- * @param ids 需要删除的数据主键集合
- * @return 结果
- */
- public int deleteSysPlanByIds(Long[] ids);
- }
|