BAEL-6572: Added setter for id

This commit is contained in:
balasr3 2023-09-04 07:47:13 +05:30
parent f0f66ceba9
commit 736fe8dee1
1 changed files with 4 additions and 0 deletions

View File

@ -15,6 +15,10 @@ public class LicenseDto {
return id;
}
public void setId(UUID id) {
this.id = id;
}
public LocalDateTime getStartDate() {
return startDate;
}