backend-api http://jira.mfd.msk:8088/browse/CLS-273 поправил swagger/json аннотации

This commit is contained in:
AKurakin 2023-05-04 19:06:39 +03:00
parent b6eb7a9d71
commit a83f4f348f

View file

@ -36,10 +36,12 @@ public class TradingClearingRegistryBackendGetFields {
@ApiModelProperty(value = "Наименование статуса", example = "ACTV")
private String status;
@JsonProperty("Дата-время создания записи")
@JsonProperty
@ApiModelProperty(value = "Дата-время создания записи")
@JsonSerialize(using = InstantSerializer.class)
private Instant createdAt;
@JsonProperty("Дата-время изменения записи")
@JsonProperty
@ApiModelProperty(value = "Дата-время изменения записи")
@JsonSerialize(using = InstantSerializer.class)
private Instant updatedAt;