From 796ce6b29766ec079d79caa1af6c15e54f9b7877 Mon Sep 17 00:00:00 2001 From: JHipster Bot Date: Wed, 30 Dec 2020 15:39:17 +0000 Subject: [PATCH 1/2] Add JDL Model `CCWAPP` See https://start.jhipster.tech/jdl-studio/#!/view/ef85c763-04ea-464f-8b58-e9723b993d50 --- ccwapp.jh | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 ccwapp.jh diff --git a/ccwapp.jh b/ccwapp.jh new file mode 100644 index 0000000..5e76d50 --- /dev/null +++ b/ccwapp.jh @@ -0,0 +1,49 @@ + +application { + config { + baseName CCWApplication, + applicationType monolith, + packageName com.finca.ccw, + authenticationType jwt, + prodDatabaseType mysql, + clientFramework angular + } + entities * +} + +entity Employee { + EmployeeID String required + UnitID String required + FirstName String required + LastName String required + EmailAddress String required + CreatedAt ZoneDateTime required + Login String +} + +entity CollectionTracking { + EmployeeID String required + UnitID String required + EmployeeName String required + BusinessProposal String required + SubProposal String required + MobileNo String required + RelationId String required + AccountNo String required + AccountTitle String required + NoOfVisits Integer required + OsAmount BigDecimal required + OsProfit BigDecimal required + OdDays String required + LoanOfficer String required + VisitedBy String required + PptDate ZoneDateTime required + Remakrs String required + CreatedAt ZoneDateTime required + +} + +relationship OneToMany { + Employee to CollectionTracking +} + \ No newline at end of file From 0944793a8700974956533f704bd31f9252da8678 Mon Sep 17 00:00:00 2001 From: JHipster Bot Date: Wed, 30 Dec 2020 15:39:20 +0000 Subject: [PATCH 2/2] Generate entities from JDL Model `CCWAPP` See https://start.jhipster.tech/jdl-studio/#!/view/ef85c763-04ea-464f-8b58-e9723b993d50