| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package com.ruoyi.system.service;
- import java.util.List;
- import com.ruoyi.system.domain.PostCollectionsSystem;
- /**
- * 【请填写功能名称】Service接口
- *
- * @author ruoyi
- * @date 2023-02-14
- */
- public interface IPostCollectionsSystemService
- {
- /**
- * 查询【请填写功能名称】
- *
- * @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 ids 需要删除的【请填写功能名称】主键集合
- * @return 结果
- */
- public int deletePostCollectionsSystemByIds(Long[] ids);
- /**
- * 删除【请填写功能名称】信息
- *
- * @param id 【请填写功能名称】主键
- * @return 结果
- */
- public int deletePostCollectionsSystemById(Long id);
- }
|