ProjectWrapper.java 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. package com.wtkj.wrapper;
  2. import com.wtkj.entity.Project;
  3. import com.wtkj.entity.ProjectStage;
  4. import com.wtkj.service.IProjectStageService;
  5. import com.wtkj.vo.ProjectVO;
  6. import com.wutong.file.feign.IFileClient;
  7. import com.wutong.file.vo.FileVO;
  8. import org.springblade.core.mp.support.BaseEntityWrapper;
  9. import org.springblade.core.tool.api.R;
  10. import org.springblade.core.tool.utils.BeanUtil;
  11. import org.springblade.core.tool.utils.SpringUtil;
  12. import org.springblade.system.entity.Dept;
  13. import org.springblade.system.feign.ISysClient;
  14. import java.util.Objects;
  15. /**
  16. * @author Blizzard
  17. * @create at 2023-09-16 23:08
  18. * @describe
  19. */
  20. public class ProjectWrapper extends BaseEntityWrapper<Project, ProjectVO> {
  21. private static IProjectStageService stageService;
  22. private static IFileClient fileClient;
  23. private static ISysClient sysClient;
  24. public static ProjectWrapper build() {
  25. stageService = SpringUtil.getBean(IProjectStageService.class);
  26. fileClient = SpringUtil.getBean(IFileClient.class);
  27. sysClient = SpringUtil.getBean(ISysClient.class);
  28. return new ProjectWrapper();
  29. }
  30. @Override
  31. public ProjectVO entityVO(Project entity) {
  32. ProjectVO vo = Objects.requireNonNull(BeanUtil.copy(entity, ProjectVO.class));
  33. Long currentStage = entity.getCurrentStage();
  34. if (currentStage != null) {
  35. ProjectStage byId = stageService.getById(currentStage);
  36. if (byId != null) {
  37. vo.setCurrentStageName(byId.getName());
  38. }
  39. }
  40. Long imgId = entity.getImgId();
  41. if (imgId != null) {
  42. R<FileVO> byId = fileClient.findById(imgId);
  43. if (byId.isSuccess()) {
  44. vo.setImgUrl(byId.getData().getFilePath());
  45. }
  46. }
  47. Long competentUnit = entity.getCompetentUnit();
  48. if (competentUnit != null) {
  49. R<Dept> dept = sysClient.getDept(competentUnit);
  50. if (dept.isSuccess()) {
  51. vo.setCompetentUnitName(dept.getData().getDeptName());
  52. }
  53. }
  54. return vo;
  55. }
  56. }