Implemented bulk import of persons
All checks were successful
Build, Push and Deploy / build-and-deploy (push) Successful in 1m43s

This commit is contained in:
Murat Özkorkmaz
2025-11-04 13:40:33 +01:00
parent d85406f0c7
commit 62c13ff0b1
9 changed files with 497 additions and 5 deletions

View File

@@ -18,6 +18,9 @@ public class Organization {
@JoinColumn(name = "industry_id")
private Industry industry;
@Column
private String owner;
@Column(nullable = false)
private LocalDateTime createdAt;
@@ -50,6 +53,14 @@ public class Organization {
this.industry = industry;
}
public String getOwner() {
return owner;
}
public void setOwner(String owner) {
this.owner = owner;
}
public LocalDateTime getCreatedAt() {
return createdAt;
}