Ver código fonte

大屏-查询接口

zhuang 6 meses atrás
pai
commit
94e07a4b7a

+ 1 - 0
business-common/src/main/java/com/rongwei/bscommon/sys/service/impl/ZhcxProjectDeviceIndicatorServiceImpl.java

@@ -63,6 +63,7 @@ public class ZhcxProjectDeviceIndicatorServiceImpl extends ServiceImpl<ZhcxProje
             dto.setSort(item.getSort());
             dto.setTotal(item.getTotal());
             dto.setCompleted(item.getCompleted());
+            dto.setType(item.getType());
             dto.setCompletionrate(item.getCompletionrate());
             if(StringUtils.isNotBlank(item.getRoption())){
                 String[] data = item.getRoption().split("-;-");

+ 2 - 0
business-entity/src/main/java/com/rongwei/bsentity/dto/ZhcxProjectDeviceIndicatorDto.java

@@ -29,5 +29,7 @@ public class ZhcxProjectDeviceIndicatorDto {
 
     private Integer sort;
 
+    private String type;
+
     private List<ZhcxProjectDeviceIndicatorDto> children;
 }