securis/src/main/java/net/curisit/securis/db/License.java
.. .. @@ -70,7 +70,7 @@ 70 70 71 71 @Id 72 72 @GeneratedValue 73 - private int id;73 + private Integer id;74 74 75 75 private String code; 76 76 .. .. @@ -147,7 +147,7 @@ 147 147 @JsonIgnore 148 148 private List<LicenseHistory> history; 149 149 150 - public int getId() {150 + public Integer getId() {151 151 return id; 152 152 } 153 153 .. .. @@ -269,7 +269,7 @@ 269 269 this.email = email; 270 270 } 271 271 272 - public void setId(int id) {272 + public void setId(Integer id) {273 273 this.id = id; 274 274 } 275 275