Update Custom-Base-Entity.md authored by Ticxo's avatar Ticxo
......@@ -3,15 +3,15 @@ complex than the default `Dummy`. You can wrap your custom target with `BaseEnti
```java
public class CustomBaseEntity implements BaseEntity<CustomTarget> {
@Getter private final CustomTarget original;
public CustomBaseEntity(CustomTarget original) {
this.original = original;
}
}
// Implement the rest of the methods
}
```
......
......