Advertisement
Guest User

Untitled

a guest
Mar 21st, 2019
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. @Entity
  2. class SomeEntity {
  3.  
  4. @Id var id: Long = 0
  5.  
  6. var otherEntityId: Long = 0
  7.  
  8. lateinit var otherEntity: ToOne<OtherEntity?>
  9. }
  10.  
  11. @Entity
  12. class OtherEntity {
  13. @Id var id: Long = 0
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement