fix merge issue; refactoring

This commit is contained in:
binary-joe
2019-09-14 19:37:32 +02:00
parent db85c8f275
commit 4254e3a5cf
20125 changed files with 1630132 additions and 0 deletions
@@ -0,0 +1,19 @@
package com.baeldung.model;
import com.baeldung.aop.annotations.Entity;
@Entity
public class Foo {
private Long id;
private String name;
public Foo(Long id, String name) {
this.id = id;
this.name = name;
}
@Override
public String toString() {
return "Foo{" + "id=" + id + ", name='" + name + '\'' + '}';
}
}