Update Custom-Base-Entity.md authored by Ticxo's avatar Ticxo
Sometimes you are trying to apply a model to something that is not an entity, or you want something that is a bit more
complex than the default `Dummy`. You can wrap your custom target with `BaseEntity` class.
complex than the default `Dummy`. You can wrap your custom target with your own `BaseEntity` class.
```java
public class CustomBaseEntity implements BaseEntity<CustomTarget> {
......
......