Skip to content

Commit

Permalink
实现Serializable接口,增强NextStationInfo类可序列化能力。
Browse files Browse the repository at this point in the history
  • Loading branch information
lcy362 committed May 16, 2024
1 parent 87e47ee commit 2228ea0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/java/com/mobo/mobosubway/data/NextStationInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@

import lombok.Data;

import java.io.Serializable;

@Data
public class NextStationInfo {
public class NextStationInfo implements Serializable {

private String id;

Expand Down

0 comments on commit 2228ea0

Please sign in to comment.