Commit cd419441 authored by zhouxudong's avatar zhouxudong

更新代码

parent b11608f3
......@@ -98,6 +98,7 @@ public class CarrierInfoServiceImpl extends ServiceImpl<CarrierInfoMapper, Carri
.add(ObjectUtils.isEmpty(area) ? "" : NumberUtil.roundStr(area, 0) + "㎡")
.add(data.getType())
.toString();
name = name.replace("null", "");
data.setName(name);
});
}
......@@ -144,6 +145,7 @@ public class CarrierInfoServiceImpl extends ServiceImpl<CarrierInfoMapper, Carri
.add(ObjectUtils.isEmpty(area) ? "" : NumberUtil.roundStr(area, 0) + "㎡")
.add(carrierDetailVo.getType())
.toString();
name = name.replace("null", "");
carrierDetailVo.setName(name);
}
return carrierDetailVo;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment