diff --git a/src/main/java/com/spring/modules/shipment/vo/ShipmentVo.java b/src/main/java/com/spring/modules/shipment/vo/ShipmentVo.java index 9edb42a..dd3d37b 100644 --- a/src/main/java/com/spring/modules/shipment/vo/ShipmentVo.java +++ b/src/main/java/com/spring/modules/shipment/vo/ShipmentVo.java @@ -11,9 +11,11 @@ import java.util.Date; @EqualsAndHashCode(callSuper = true) @Data public class ShipmentVo extends Shipment { - + @DateTimeFormat(pattern = "yyyy-MM-dd") + @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") private Date startDate; - + @DateTimeFormat(pattern = "yyyy-MM-dd") + @JsonFormat(pattern = "yyyy-MM-dd", timezone = "GMT+8") private Date endDate; private String warehouseId;