From 45cedf330662a14b8d2818c30bedb0f7c89a54ded8269d4054c649977a1de804 Mon Sep 17 00:00:00 2001 From: yanglei Date: Tue, 6 Jan 2026 13:33:50 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=A8=E6=88=B7=E8=8E=B7=E5=8F=96=E8=BD=A6?= =?UTF-8?q?=E8=BE=86=E8=AF=A6=E6=83=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/java/com/cdzy/user/model/vo/EbikeBikeInfoVo.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ebike-user/src/main/java/com/cdzy/user/model/vo/EbikeBikeInfoVo.java b/ebike-user/src/main/java/com/cdzy/user/model/vo/EbikeBikeInfoVo.java index 4619c6b..5ef4486 100644 --- a/ebike-user/src/main/java/com/cdzy/user/model/vo/EbikeBikeInfoVo.java +++ b/ebike-user/src/main/java/com/cdzy/user/model/vo/EbikeBikeInfoVo.java @@ -1,7 +1,7 @@ package com.cdzy.user.model.vo; -import com.cdzy.user.handler.PointSerializer; import com.cdzy.user.handler.PolygonDeserializer; +import com.cdzy.user.handler.PolygonSerializer; import com.cdzy.user.handler.PolygonTypeHandler; import com.fasterxml.jackson.databind.annotation.JsonDeserialize; import com.fasterxml.jackson.databind.annotation.JsonSerialize; @@ -108,7 +108,7 @@ public class EbikeBikeInfoVo implements Serializable { * 车辆运营区 */ @Column(typeHandler = PolygonTypeHandler.class) - @JsonSerialize(using = PointSerializer.class) + @JsonSerialize(using = PolygonSerializer.class) @JsonDeserialize(using = PolygonDeserializer.class) private Polygon regionPolygon; }