我有这个领域的课程:
@ApiModelProperty(value = "Дата получения баланса", example = "2018-01-16T09:22:33.316Z")
@JsonProperty("date")
private Instant date;
当我从此源(使用 swagger-maven-plugin)生成 yaml 时,我得到:
date:
type: "integer"
format: "int64"
example: "2018-01-16T09:22:33.316Z"
description: "Дата получения баланса"
因此,当我从 yaml(使用 swagger-codegen-maven-plugin)生成回我的类时,我使用以下字段得到它:
@JsonProperty("date")
private Long date = null;
为什么 Instant 转换为 Long?