Instant createTime = date.toInstant();
Instant nowTime = Instant.now(); // 当前的时间
long days = Duration.between(createTime, nowTime).toDays();
Instant createTime = date.toInstant();
Instant nowTime = Instant.now(); // 当前的时间
long days = Duration.between(createTime, nowTime).toDays();