User mapping and refactoring

This commit is contained in:
D065023
2019-12-02 10:35:22 +01:00
parent e688e7ecee
commit 7191f61806
5 changed files with 31 additions and 45 deletions

View File

@@ -22,6 +22,11 @@ entity Authors : managed {
books : Association to many Books on books.author = $self;
}
entity UserMappings {
key userID: String;
businessPartnerID: String;
}
entity Orders : cuid, managed {
OrderNo : String @title:'Order Number'; //> readable key
Items : Composition of many OrderItems on Items.parent = $self;