TPumpingStationServiceImpl.java 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. package com.slibra.business.service.impl;
  2. import java.util.ArrayList;
  3. import java.util.Collections;
  4. import java.util.List;
  5. import java.util.Map;
  6. import java.util.stream.Collectors;
  7. import com.slibra.business.domain.TNeighborhoodBuilding;
  8. import com.slibra.business.domain.TPumpingStationNeighbourhoodNumber;
  9. import com.slibra.business.mapper.TNeighborhoodBuildingMapper;
  10. import com.slibra.business.mapper.TPumpingStationNeighbourhoodNumberMapper;
  11. import com.slibra.business.req.NeighbourhoodNumberAndAddFlagReq;
  12. import com.slibra.business.res.*;
  13. import com.slibra.common.exception.ServiceException;
  14. import com.slibra.common.utils.DateUtils;
  15. import org.apache.poi.ss.formula.functions.T;
  16. import org.springframework.beans.factory.annotation.Autowired;
  17. import org.springframework.stereotype.Service;
  18. import com.slibra.business.mapper.TPumpingStationMapper;
  19. import com.slibra.business.domain.TPumpingStation;
  20. import com.slibra.business.service.ITPumpingStationService;
  21. import org.springframework.transaction.annotation.Transactional;
  22. import org.springframework.util.CollectionUtils;
  23. /**
  24. * 泵站Service业务层处理
  25. *
  26. * @author slibra
  27. * @date 2024-11-05
  28. */
  29. @Service
  30. public class TPumpingStationServiceImpl implements ITPumpingStationService
  31. {
  32. @Autowired
  33. private TPumpingStationMapper tPumpingStationMapper;
  34. @Autowired
  35. private TNeighborhoodBuildingMapper tNeighborhoodBuildingMapper;
  36. @Autowired
  37. private TPumpingStationNeighbourhoodNumberMapper tPumpingStationNeighbourhoodNumberMapper;
  38. /**
  39. * 查询泵站
  40. *
  41. * @param id 泵站主键
  42. * @return 泵站
  43. */
  44. @Override
  45. public TPumpingStation selectTPumpingStationById(Long id)
  46. {
  47. return tPumpingStationMapper.selectTPumpingStationById(id);
  48. }
  49. /**
  50. * 查询泵站列表
  51. *
  52. * @param tPumpingStation 泵站
  53. * @return 泵站
  54. */
  55. @Override
  56. public List<TPumpingStation> selectTPumpingStationList(TPumpingStation tPumpingStation)
  57. {
  58. List<TPumpingStation> pumpingStations = tPumpingStationMapper.selectTPumpingStationList(tPumpingStation);
  59. //2024年11月12日15:51:43 返回泵站关联的小区信息
  60. if(!CollectionUtils.isEmpty(pumpingStations)){
  61. for (TPumpingStation pumpingStation : pumpingStations) {
  62. this.addNeighbourhoodAndBuildings(pumpingStation);
  63. }
  64. }
  65. return pumpingStations;
  66. }
  67. /**
  68. * 查询泵站关联的小区信息
  69. * @param pumpingStation
  70. */
  71. private void addNeighbourhoodAndBuildings(TPumpingStation pumpingStation) {
  72. List<NeighbourhoodAndBuilding> list = this.tPumpingStationMapper.getNeighbourhoodAndBuildingByPumpingId(pumpingStation.getId());
  73. if(!CollectionUtils.isEmpty(list)){
  74. Map<String, List<NeighbourhoodAndBuilding>> collect = list.stream().collect(Collectors.groupingBy(NeighbourhoodAndBuilding::getNeighborhoodName));
  75. List<NeighbourhoodAndNumber> result = new ArrayList<>(collect.size());
  76. collect.forEach((key, value) -> {
  77. NeighbourhoodAndNumber neighbourhoodAndNumber = new NeighbourhoodAndNumber();
  78. neighbourhoodAndNumber.setNeighbourhoodName(key);
  79. neighbourhoodAndNumber.setBuildingsNames(value.stream().map(NeighbourhoodAndBuilding::getNeighborhoodBuildingName).collect(Collectors.joining("、")));
  80. result.add(neighbourhoodAndNumber);
  81. });
  82. StringBuilder sb = new StringBuilder();
  83. for (int i = 0; i < result.size(); i++) {
  84. NeighbourhoodAndNumber neighbourhoodAndNumber = result.get(i);
  85. sb.append(neighbourhoodAndNumber.getNeighbourhoodName()).append("(").append(neighbourhoodAndNumber.getBuildingsNames()).append(")");
  86. if (i != result.size() - 1) {
  87. sb.append(",");
  88. }
  89. }
  90. pumpingStation.setNeighbourhoodAndBuildings(sb.toString());
  91. }
  92. }
  93. /**
  94. * 新增泵站
  95. *
  96. * @param tPumpingStation 泵站
  97. * @return 结果
  98. */
  99. @Override
  100. public int insertTPumpingStation(TPumpingStation tPumpingStation)
  101. {
  102. tPumpingStation.setCreateTime(DateUtils.getNowDate());
  103. return tPumpingStationMapper.insertTPumpingStation(tPumpingStation);
  104. }
  105. /**
  106. * 修改泵站
  107. *
  108. * @param tPumpingStation 泵站
  109. * @return 结果
  110. */
  111. @Override
  112. public int updateTPumpingStation(TPumpingStation tPumpingStation)
  113. {
  114. tPumpingStation.setUpdateTime(DateUtils.getNowDate());
  115. return tPumpingStationMapper.updateTPumpingStation(tPumpingStation);
  116. }
  117. /**
  118. * 批量删除泵站
  119. *
  120. * @param ids 需要删除的泵站主键
  121. * @return 结果
  122. */
  123. @Override
  124. public int deleteTPumpingStationByIds(Long[] ids)
  125. {
  126. return tPumpingStationMapper.deleteTPumpingStationByIds(ids);
  127. }
  128. /**
  129. * 删除泵站信息
  130. *
  131. * @param id 泵站主键
  132. * @return 结果
  133. */
  134. @Override
  135. public int deleteTPumpingStationById(Long id)
  136. {
  137. return tPumpingStationMapper.deleteTPumpingStationById(id);
  138. }
  139. @Override
  140. public List<NeighbourhoodNumberAndAddFlag> getBuildingsAndFlagByID2(NeighbourhoodNumberAndAddFlagReq req) {
  141. Long neighbourhoodId = req.getNeighbourhoodId();
  142. Long pumpingStationId = req.getPumpingStationId();
  143. List<NeighbourhoodNumberAndAddFlag> result = new ArrayList<>();
  144. //先获取该小区下的所有的楼号
  145. List<TNeighborhoodBuilding> tNeighborhoodBuildings = this.tNeighborhoodBuildingMapper.selectTNeighborhoodBuildingList(TNeighborhoodBuilding.builder().neighborhoodId(neighbourhoodId).build());
  146. if(CollectionUtils.isEmpty(tNeighborhoodBuildings))
  147. return result;
  148. //有楼号
  149. for (TNeighborhoodBuilding tNeighborhoodBuilding : tNeighborhoodBuildings) {
  150. NeighbourhoodNumberAndAddFlag neighbourhoodNumberAndAddFlag = new NeighbourhoodNumberAndAddFlag();
  151. //楼号
  152. neighbourhoodNumberAndAddFlag.setBuildingId(tNeighborhoodBuilding.getId());
  153. neighbourhoodNumberAndAddFlag.setBuildingsNames(tNeighborhoodBuilding.getName());
  154. //小区
  155. neighbourhoodNumberAndAddFlag.setNeighbourhoodId(neighbourhoodId);
  156. //泵站ID
  157. neighbourhoodNumberAndAddFlag.setPumpingStationId(pumpingStationId);
  158. //通过楼号和泵站查询对应的楼号是否已经添加过了
  159. List<TPumpingStationNeighbourhoodNumber> tPumpingStationNeighbourhoodNumbers = this.tPumpingStationNeighbourhoodNumberMapper.selectTPumpingStationNeighbourhoodNumberList(TPumpingStationNeighbourhoodNumber.builder().pumpingStationId(pumpingStationId).neighborhoodId(tNeighborhoodBuilding.getNeighborhoodId()).neighborhoodBuildingId(tNeighborhoodBuilding.getId()).build());
  160. if(!CollectionUtils.isEmpty(tPumpingStationNeighbourhoodNumbers)){
  161. TPumpingStationNeighbourhoodNumber tPumpingStationNeighbourhoodNumber = tPumpingStationNeighbourhoodNumbers.get(0);
  162. neighbourhoodNumberAndAddFlag.setId(tPumpingStationNeighbourhoodNumber.getId());
  163. neighbourhoodNumberAndAddFlag.setAdd(true);
  164. }
  165. result.add(neighbourhoodNumberAndAddFlag);
  166. }
  167. return result;
  168. }
  169. @Override
  170. @Transactional(rollbackFor = Exception.class)
  171. public String addPumpingStationAndNeighbourhoodBuildings(List<NeighbourhoodNumberAndAddFlag> req) {
  172. //需要把之前所有的关联数据全部删除掉
  173. if(!CollectionUtils.isEmpty(req)){
  174. for (NeighbourhoodNumberAndAddFlag neighbourhoodNumberAndAddFlag : req) {
  175. List<TPumpingStationNeighbourhoodNumber> tPumpingStationNeighbourhoodNumbersExists = this.tPumpingStationNeighbourhoodNumberMapper.selectTPumpingStationNeighbourhoodNumberList(TPumpingStationNeighbourhoodNumber.builder().pumpingStationId(neighbourhoodNumberAndAddFlag.getPumpingStationId()).build());
  176. if(!CollectionUtils.isEmpty(tPumpingStationNeighbourhoodNumbersExists)){
  177. for (TPumpingStationNeighbourhoodNumber tPumpingStationNeighbourhoodNumber : tPumpingStationNeighbourhoodNumbersExists) {
  178. this.tPumpingStationNeighbourhoodNumberMapper.deleteTPumpingStationNeighbourhoodNumberById(tPumpingStationNeighbourhoodNumber.getId());
  179. }
  180. }
  181. }
  182. //保存新的数据
  183. for (NeighbourhoodNumberAndAddFlag addReq : req) {
  184. Long pumpingStationId = addReq.getPumpingStationId();
  185. Long neighbourhoodId = addReq.getNeighbourhoodId();
  186. Long buildingId = addReq.getBuildingId();
  187. //判断是否已经添加过了,添加过了就抛出异常 不用判断是否已添加了,因为是每次都是覆盖添加
  188. /*List<TPumpingStationNeighbourhoodNumber> tPumpingStationNeighbourhoodNumbers = this.tPumpingStationNeighbourhoodNumberMapper.selectTPumpingStationNeighbourhoodNumberList(TPumpingStationNeighbourhoodNumber.builder().pumpingStationId(pumpingStationId).neighborhoodId(neighbourhoodId).neighborhoodBuildingId(buildingId).build());
  189. if(!CollectionUtils.isEmpty(tPumpingStationNeighbourhoodNumbers)){
  190. throw new ServiceException("有存在重复添加的数据,请检查!");
  191. }*/
  192. //赋值
  193. TPumpingStationNeighbourhoodNumber build = TPumpingStationNeighbourhoodNumber.builder().build();
  194. build.setPumpingStationId(pumpingStationId);
  195. build.setNeighborhoodId(neighbourhoodId);
  196. build.setNeighborhoodBuildingId(buildingId);
  197. //保存
  198. tPumpingStationNeighbourhoodNumberMapper.insertTPumpingStationNeighbourhoodNumber(build);
  199. }
  200. }
  201. return "操作成功";
  202. }
  203. }