12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.ruoyi.system.mapper;
- import java.util.List;
- import com.ruoyi.system.domain.CollectionSystem;
- /**
- * 【请填写功能名称】Mapper接口
- *
- * @author ruoyi
- * @date 2023-02-14
- */
- public interface CollectionSystemMapper
- {
- /**
- * 查询【请填写功能名称】
- *
- * @param id 【请填写功能名称】主键
- * @return 【请填写功能名称】
- */
- public CollectionSystem selectCollectionSystemById(Long id);
- /**
- * 查询【请填写功能名称】列表
- *
- * @param collectionSystem 【请填写功能名称】
- * @return 【请填写功能名称】集合
- */
- public List<CollectionSystem> selectCollectionSystemList(CollectionSystem collectionSystem);
- /**
- * 新增【请填写功能名称】
- *
- * @param collectionSystem 【请填写功能名称】
- * @return 结果
- */
- public int insertCollectionSystem(CollectionSystem collectionSystem);
- /**
- * 修改【请填写功能名称】
- *
- * @param collectionSystem 【请填写功能名称】
- * @return 结果
- */
- public int updateCollectionSystem(CollectionSystem collectionSystem);
- /**
- * 删除【请填写功能名称】
- *
- * @param id 【请填写功能名称】主键
- * @return 结果
- */
- public int deleteCollectionSystemById(Long id);
- /**
- * 批量删除【请填写功能名称】
- *
- * @param ids 需要删除的数据主键集合
- * @return 结果
- */
- public int deleteCollectionSystemByIds(Long[] ids);
- }
|