12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.ruoyi.system.mapper;
- import java.util.List;
- import com.ruoyi.system.domain.PostCollectionsSystem;
- /**
- * 藏品套系Mapper接口
- *
- * @author ruoyi
- * @date 2023-02-15
- */
- public interface PostCollectionsSystemMapper
- {
- /**
- * 查询藏品套系
- *
- * @param id 藏品套系主键
- * @return 藏品套系
- */
- public PostCollectionsSystem selectPostCollectionsSystemById(Long id);
- /**
- * 查询藏品套系列表
- *
- * @param postCollectionsSystem 藏品套系
- * @return 藏品套系集合
- */
- public List<PostCollectionsSystem> selectPostCollectionsSystemList(PostCollectionsSystem postCollectionsSystem);
- /**
- * 新增藏品套系
- *
- * @param postCollectionsSystem 藏品套系
- * @return 结果
- */
- public int insertPostCollectionsSystem(PostCollectionsSystem postCollectionsSystem);
- /**
- * 修改藏品套系
- *
- * @param postCollectionsSystem 藏品套系
- * @return 结果
- */
- public int updatePostCollectionsSystem(PostCollectionsSystem postCollectionsSystem);
- /**
- * 删除藏品套系
- *
- * @param id 藏品套系主键
- * @return 结果
- */
- public int deletePostCollectionsSystemById(Long id);
- /**
- * 批量删除藏品套系
- *
- * @param ids 需要删除的数据主键集合
- * @return 结果
- */
- public int deletePostCollectionsSystemByIds(Long[] ids);
- }
|