mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
19 lines
292 B
Java
19 lines
292 B
Java
package org.example.domain;
|
|
|
|
import jakarta.persistence.Entity;
|
|
import jakarta.persistence.Id;
|
|
import jakarta.persistence.ManyToOne;
|
|
import org.example.domain.other.OtherBean;
|
|
|
|
@SuppressWarnings("unused")
|
|
@Entity
|
|
public class OtherMain {
|
|
|
|
@Id
|
|
long id;
|
|
|
|
@ManyToOne
|
|
OtherBean other;
|
|
|
|
}
|