Implemented bulk import of persons
All checks were successful
Build, Push and Deploy / build-and-deploy (push) Successful in 1m43s
All checks were successful
Build, Push and Deploy / build-and-deploy (push) Successful in 1m43s
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user