int$64 is long

This commit is contained in:
Brian Long 2023-11-16 09:20:22 -05:00
parent 93c593bb41
commit 09aabea4e3

View File

@ -45,7 +45,7 @@ public class ModelRepresentation {
@JsonProperty("comment") @JsonProperty("comment")
private String comment; private String comment;
@JsonProperty("createdBy") @JsonProperty("createdBy")
private Integer createdBy; private Long createdBy;
@JsonProperty("createdByFullName") @JsonProperty("createdByFullName")
private String createdByFullName; private String createdByFullName;
@JsonProperty("description") @JsonProperty("description")
@ -53,12 +53,12 @@ public class ModelRepresentation {
@JsonProperty("favorite") @JsonProperty("favorite")
private Boolean favorite; private Boolean favorite;
@JsonProperty("id") @JsonProperty("id")
private Integer id; private Long id;
@JsonProperty("lastUpdated") @JsonProperty("lastUpdated")
@JsonFormat(shape = Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSXX") @JsonFormat(shape = Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSSXX")
private OffsetDateTime lastUpdated; private OffsetDateTime lastUpdated;
@JsonProperty("lastUpdatedBy") @JsonProperty("lastUpdatedBy")
private Integer lastUpdatedBy; private Long lastUpdatedBy;
@JsonProperty("lastUpdatedByFullName") @JsonProperty("lastUpdatedByFullName")
private String lastUpdatedByFullName; private String lastUpdatedByFullName;
@JsonProperty("latestVersion") @JsonProperty("latestVersion")
@ -70,11 +70,11 @@ public class ModelRepresentation {
@JsonProperty("permission") @JsonProperty("permission")
private String permission; private String permission;
@JsonProperty("referenceId") @JsonProperty("referenceId")
private Integer referenceId; private Long referenceId;
@JsonProperty("stencilSet") @JsonProperty("stencilSet")
private Integer stencilSet; private Long stencilSet;
@JsonProperty("tenantId") @JsonProperty("tenantId")
private Integer tenantId; private Long tenantId;
@JsonProperty("version") @JsonProperty("version")
private Integer version; private Integer version;
@JsonIgnore @JsonIgnore
@ -96,16 +96,16 @@ public class ModelRepresentation {
} }
@JsonProperty("createdBy") @JsonProperty("createdBy")
public Integer getCreatedBy() { public Long getCreatedBy() {
return createdBy; return createdBy;
} }
@JsonProperty("createdBy") @JsonProperty("createdBy")
public void setCreatedBy(Integer createdBy) { public void setCreatedBy(Long createdBy) {
this.createdBy = createdBy; this.createdBy = createdBy;
} }
public ModelRepresentation withCreatedBy(Integer createdBy) { public ModelRepresentation withCreatedBy(Long createdBy) {
this.createdBy = createdBy; this.createdBy = createdBy;
return this; return this;
} }
@ -156,16 +156,16 @@ public class ModelRepresentation {
} }
@JsonProperty("id") @JsonProperty("id")
public Integer getId() { public Long getId() {
return id; return id;
} }
@JsonProperty("id") @JsonProperty("id")
public void setId(Integer id) { public void setId(Long id) {
this.id = id; this.id = id;
} }
public ModelRepresentation withId(Integer id) { public ModelRepresentation withId(Long id) {
this.id = id; this.id = id;
return this; return this;
} }
@ -186,16 +186,16 @@ public class ModelRepresentation {
} }
@JsonProperty("lastUpdatedBy") @JsonProperty("lastUpdatedBy")
public Integer getLastUpdatedBy() { public Long getLastUpdatedBy() {
return lastUpdatedBy; return lastUpdatedBy;
} }
@JsonProperty("lastUpdatedBy") @JsonProperty("lastUpdatedBy")
public void setLastUpdatedBy(Integer lastUpdatedBy) { public void setLastUpdatedBy(Long lastUpdatedBy) {
this.lastUpdatedBy = lastUpdatedBy; this.lastUpdatedBy = lastUpdatedBy;
} }
public ModelRepresentation withLastUpdatedBy(Integer lastUpdatedBy) { public ModelRepresentation withLastUpdatedBy(Long lastUpdatedBy) {
this.lastUpdatedBy = lastUpdatedBy; this.lastUpdatedBy = lastUpdatedBy;
return this; return this;
} }
@ -276,46 +276,46 @@ public class ModelRepresentation {
} }
@JsonProperty("referenceId") @JsonProperty("referenceId")
public Integer getReferenceId() { public Long getReferenceId() {
return referenceId; return referenceId;
} }
@JsonProperty("referenceId") @JsonProperty("referenceId")
public void setReferenceId(Integer referenceId) { public void setReferenceId(Long referenceId) {
this.referenceId = referenceId; this.referenceId = referenceId;
} }
public ModelRepresentation withReferenceId(Integer referenceId) { public ModelRepresentation withReferenceId(Long referenceId) {
this.referenceId = referenceId; this.referenceId = referenceId;
return this; return this;
} }
@JsonProperty("stencilSet") @JsonProperty("stencilSet")
public Integer getStencilSet() { public Long getStencilSet() {
return stencilSet; return stencilSet;
} }
@JsonProperty("stencilSet") @JsonProperty("stencilSet")
public void setStencilSet(Integer stencilSet) { public void setStencilSet(Long stencilSet) {
this.stencilSet = stencilSet; this.stencilSet = stencilSet;
} }
public ModelRepresentation withStencilSet(Integer stencilSet) { public ModelRepresentation withStencilSet(Long stencilSet) {
this.stencilSet = stencilSet; this.stencilSet = stencilSet;
return this; return this;
} }
@JsonProperty("tenantId") @JsonProperty("tenantId")
public Integer getTenantId() { public Long getTenantId() {
return tenantId; return tenantId;
} }
@JsonProperty("tenantId") @JsonProperty("tenantId")
public void setTenantId(Integer tenantId) { public void setTenantId(Long tenantId) {
this.tenantId = tenantId; this.tenantId = tenantId;
} }
public ModelRepresentation withTenantId(Integer tenantId) { public ModelRepresentation withTenantId(Long tenantId) {
this.tenantId = tenantId; this.tenantId = tenantId;
return this; return this;
} }