lyhzzz 3 月之前
父節點
當前提交
f1ef97fbad

+ 1 - 1
src/main/java/com/fdkankan/fusion/response/CaseTagPointVo.java

@@ -34,7 +34,7 @@ public class CaseTagPointVo extends CaseTag {
 
     private String mat;
 
-    private Integer fontSize;
+    private Double fontSize;
 
     private String lineHeight;
 

+ 1 - 0
src/main/java/com/fdkankan/fusion/service/impl/CaseTagPointServiceImpl.java

@@ -74,6 +74,7 @@ public class CaseTagPointServiceImpl extends ServiceImpl<ICaseTagPointMapper, Ca
         wrapper.eq(CaseTagPoint::getBindHide,0);
         wrapper.orderByAsc(CaseTagPoint::getCreateTime);
         List<CaseTagPoint> list = this.list(wrapper);
+
         List<CaseTagPointVo> caseTagPointVoList = new ArrayList<>();
         for (CaseTagPoint caseTagPoint : list) {
             CaseTagPointVo caseTagPointVo = new CaseTagPointVo();