Commit 37af2b6a by chamberone

fix: 解决字段为空错误

1 parent c39bae2f
......@@ -152,10 +152,10 @@ public class OrderInfoEntity {
private LocalDateTime planEndTime;
@Column(name = "arrive_elapsed", nullable = true, columnDefinition = "int(11) default '0'")
private int arriveElapsed;
private Integer arriveElapsed;
@Column(name = "arrive_distance", nullable = true, columnDefinition = "int(11) default '0'")
private int arriveDistance;
private Integer arriveDistance;
@Column(name = "actual_start_time")
private LocalDateTime actualStartTime;
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!