This commit is contained in:
Elena Oresharova
2020-04-07 11:29:11 +02:00
parent 2f52cbd918
commit 7b31657f69
9 changed files with 58 additions and 13 deletions

View File

@@ -2,7 +2,22 @@ namespace sap.capire.bookshop;
@cds.persistence.exists
entity Books {
key ID: UUID;
key ID: Integer;
title : String(111);
descr : String(1111);
author : String(50);
rating : Integer;
}
@cds.persistence.exists
entity BooksDescr {
key id : Integer;
book_descr : String(2000);
}
@cds.persistence.exists
entity BooksInfo (REQ_RATING : Integer) {
key id : Integer;
rating : Integer;
book_author_info : String;
}