| .. | .. |
|---|
| 50 | 50 | |
|---|
| 51 | 51 | @Id |
|---|
| 52 | 52 | @GeneratedValue |
|---|
| 53 | | - private int id; |
|---|
| 53 | + private Integer id; |
|---|
| 54 | 54 | |
|---|
| 55 | 55 | private String code; |
|---|
| 56 | 56 | private String name; |
|---|
| 57 | 57 | private String description; |
|---|
| 58 | 58 | |
|---|
| 59 | 59 | @Column(name = "creation_timestamp") |
|---|
| 60 | + @JsonProperty("creation_timestamp") |
|---|
| 60 | 61 | private Date creationTimestamp; |
|---|
| 61 | 62 | |
|---|
| 62 | 63 | @JsonIgnore |
|---|
| .. | .. |
|---|
| 82 | 83 | @OneToMany(fetch = FetchType.LAZY, mappedBy = "parentOrganization") |
|---|
| 83 | 84 | private Set<Organization> childOrganizations; |
|---|
| 84 | 85 | |
|---|
| 85 | | - public int getId() { |
|---|
| 86 | + public Integer getId() { |
|---|
| 86 | 87 | return id; |
|---|
| 87 | 88 | } |
|---|
| 88 | 89 | |
|---|
| 89 | | - public void setId(int id) { |
|---|
| 90 | + public void setId(Integer id) { |
|---|
| 90 | 91 | this.id = id; |
|---|
| 91 | 92 | } |
|---|
| 92 | 93 | |
|---|