NewsInfoServiceImpl.java 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. package com.ruoyi.system.service.impl;
  2. import java.util.List;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.stereotype.Service;
  5. import com.ruoyi.system.mapper.NewsInfoMapper;
  6. import com.ruoyi.system.domain.NewsInfo;
  7. import com.ruoyi.system.service.INewsInfoService;
  8. import com.ruoyi.common.core.text.Convert;
  9. /**
  10. * 文章管理Service业务层处理
  11. *
  12. * @author ruoyi
  13. * @date 2021-12-28
  14. */
  15. @Service
  16. public class NewsInfoServiceImpl implements INewsInfoService
  17. {
  18. @Autowired
  19. private NewsInfoMapper newsInfoMapper;
  20. /**
  21. * 查询文章管理
  22. *
  23. * @param newsInfoId 文章管理主键
  24. * @return 文章管理
  25. */
  26. @Override
  27. public NewsInfo selectNewsInfoByNewsInfoId(Long newsInfoId)
  28. {
  29. return newsInfoMapper.selectNewsInfoByNewsInfoId(newsInfoId);
  30. }
  31. /**
  32. * 查询文章管理列表
  33. *
  34. * @param newsInfo 文章管理
  35. * @return 文章管理
  36. */
  37. @Override
  38. public List<NewsInfo> selectNewsInfoList(NewsInfo newsInfo)
  39. {
  40. return newsInfoMapper.selectNewsInfoList(newsInfo);
  41. }
  42. /**
  43. * 新增文章管理
  44. *
  45. * @param newsInfo 文章管理
  46. * @return 结果
  47. */
  48. @Override
  49. public int insertNewsInfo(NewsInfo newsInfo)
  50. {
  51. return newsInfoMapper.insertNewsInfo(newsInfo);
  52. }
  53. /**
  54. * 修改文章管理
  55. *
  56. * @param newsInfo 文章管理
  57. * @return 结果
  58. */
  59. @Override
  60. public int updateNewsInfo(NewsInfo newsInfo)
  61. {
  62. return newsInfoMapper.updateNewsInfo(newsInfo);
  63. }
  64. /**
  65. * 批量删除文章管理
  66. *
  67. * @param newsInfoIds 需要删除的文章管理主键
  68. * @return 结果
  69. */
  70. @Override
  71. public int deleteNewsInfoByNewsInfoIds(String newsInfoIds)
  72. {
  73. return newsInfoMapper.deleteNewsInfoByNewsInfoIds(Convert.toStrArray(newsInfoIds));
  74. }
  75. /**
  76. * 删除文章管理信息
  77. *
  78. * @param newsInfoId 文章管理主键
  79. * @return 结果
  80. */
  81. @Override
  82. public int deleteNewsInfoByNewsInfoId(Long newsInfoId)
  83. {
  84. return newsInfoMapper.deleteNewsInfoByNewsInfoId(newsInfoId);
  85. }
  86. }