DevelopmentsService.java 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. package com.lqkj.info.service;
  2. import java.util.List;
  3. import java.time.LocalDateTime;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.stereotype.Service;
  6. import com.lqkj.info.mapper.DevelopmentsMapper;
  7. import com.lqkj.info.entity.Developments;
  8. import com.lqkj.common.utils.uuid.IdUtils;
  9. /**
  10. * 发展定位:developmentsService业务层处理
  11. *
  12. * @author lqkj
  13. * @date 2024-12-13
  14. */
  15. @Service
  16. public class DevelopmentsService
  17. {
  18. @Autowired
  19. private DevelopmentsMapper developmentsMapper;
  20. /**
  21. * 查询发展定位:developments
  22. *
  23. * @param id 发展定位:developments主键
  24. * @return 发展定位:developments
  25. */
  26. public Developments selectDevelopmentsById(Integer id)
  27. {
  28. return developmentsMapper.selectDevelopmentsById(id);
  29. }
  30. /**
  31. * 查询发展定位:developments列表
  32. *
  33. * @param developments 发展定位:developments
  34. * @return 发展定位:developments
  35. */
  36. public List<Developments> selectDevelopmentsList(Developments developments)
  37. {
  38. return developmentsMapper.selectDevelopmentsList(developments);
  39. }
  40. /**
  41. * 新增发展定位:developments
  42. *
  43. * @param developments 发展定位:developments
  44. * @return 结果
  45. */
  46. public int insertDevelopments(Developments developments)
  47. {
  48. developments.setCreateTime(LocalDateTime.now());
  49. return developmentsMapper.insertDevelopments(developments);
  50. }
  51. /**
  52. * 修改发展定位:developments
  53. *
  54. * @param developments 发展定位:developments
  55. * @return 结果
  56. */
  57. public int updateDevelopments(Developments developments)
  58. {
  59. return developmentsMapper.updateDevelopments(developments);
  60. }
  61. /**
  62. * 批量删除发展定位:developments
  63. *
  64. * @param ids 需要删除的发展定位:developments主键
  65. * @return 结果
  66. */
  67. public int deleteDevelopmentsByIds(Integer[] ids)
  68. {
  69. return developmentsMapper.deleteDevelopmentsByIds(ids);
  70. }
  71. /**
  72. * 删除发展定位:developments信息
  73. *
  74. * @param id 发展定位:developments主键
  75. * @return 结果
  76. */
  77. public int deleteDevelopmentsById(Integer id)
  78. {
  79. return developmentsMapper.deleteDevelopmentsById(id);
  80. }
  81. }