From 560672ac08f90f2e6d7c4e15b1d5e7136879f55b Mon Sep 17 00:00:00 2001 From: JHipster Bot Date: Wed, 30 Dec 2020 15:41:28 +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..edaa430 --- /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 + + +} + +relationship OneToMany { + Employee to CollectionTracking +} + \ No newline at end of file From 554a80e9389f5a3997dc9326fddeba68823f9d34 Mon Sep 17 00:00:00 2001 From: JHipster Bot Date: Wed, 30 Dec 2020 15:41:31 +0000 Subject: [PATCH 2/2] Generate entities from JDL Model `CCWAPP` See https://start.jhipster.tech/jdl-studio/#!/view/ef85c763-04ea-464f-8b58-e9723b993d50