-
Notifications
You must be signed in to change notification settings - Fork 0
/
office-assistant.jh
219 lines (187 loc) · 4.33 KB
/
office-assistant.jh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
application {
config {
baseName ui
applicationType gateway
packageName ro.trc.office.ui
serviceDiscoveryType no
authenticationType jwt
databaseType mongodb
cacheProvider no
enableHibernateCache false
buildTool gradle
useSass true
testFrameworks [protractor]
}
entities *
}
application {
config {
baseName organization
applicationType microservice
packageName ro.trc.office.organization
serviceDiscoveryType no
authenticationType jwt
prodDatabaseType mysql
cacheProvider hazelcast
buildTool gradle
serverPort 8081
}
entities Department, Employee
}
application {
config {
baseName leave
applicationType microservice
packageName ro.trc.office.leave
serviceDiscoveryType no
authenticationType jwt
databaseType mongodb
cacheProvider no
enableHibernateCache false
buildTool gradle
serverPort 8082
}
entities EmployeeLeave, LeaveRequest
}
application {
config {
baseName notification
applicationType microservice
packageName ro.trc.office.notification
serviceDiscoveryType no
authenticationType jwt
databaseType mongodb
cacheProvider no
enableHibernateCache false
buildTool gradle
serverPort 8083
}
entities Notification
}
application {
config {
baseName meeting
applicationType microservice
packageName ro.trc.office.meeting
serviceDiscoveryType no
authenticationType jwt
databaseType mongodb
cacheProvider no
enableHibernateCache false
buildTool gradle
serverPort 8084
}
entities MeetingRoom, Meeting, Participant
}
/**
* ORGANIZATION
*/
entity Employee {
code String required
firstName String required
lastName String required
gender Gender required
email String required pattern(/^[^@\s]+@[^@\s]+\.[^@\s]+$/)
phone String required
addressLine1 String required
addressLine2 String
city String required
country String required
}
entity Department {
code String required
name String required
}
enum Gender {
MALE, FEMALE, OTHER
}
relationship ManyToOne {
Employee{department(name) required} to Department
}
service Employee, Department with serviceClass
paginate Employee, Department with pagination
microservice Employee, Department with organization
/**
* LEAVE
*/
entity EmployeeLeave {
employeeCode String required
total BigDecimal required
available BigDecimal required
}
enum LeaveRequestStatus {
COMPLETED, PENDING, APPROVED, REJECTED, CANCELLED
}
enum LeaveRequestType {
VACATION, MEDICAL
}
entity LeaveRequest {
startDate Instant required
endDate Instant required
creationDate Instant required
departmentCode String required
employeeCode String required
workingDays Long required
description String
leaveType LeaveRequestType required
status LeaveRequestStatus required
}
service EmployeeLeave, LeaveRequest with serviceClass
paginate EmployeeLeave, LeaveRequest with pagination
microservice EmployeeLeave, LeaveRequest with leave
/**
* NOTIFICATION
*/
entity Notification {
date Instant required
details String
sentDate Instant required
format NotificationType required
userId Long required
productId Long required
}
enum NotificationType {
EMAIL, PUSH
}
service Notification with serviceClass
paginate Notification with pagination
microservice Notification with notification
/**
* MEETING
*/
entity MeetingRoom {
code String required
location String required
name String required
}
entity Participant {
email String required
}
entity Meeting {
title String required
description String
startDate Instant required
endDate Instant required
}
relationship ManyToOne {
Meeting{meetingRoom(name) required} to MeetingRoom
}
relationship ManyToMany {
Meeting{participant(email)} to Participant{meeting(title)}
}
service MeetingRoom, Meeting, Participant with serviceClass
paginate MeetingRoom, Meeting, Participant with pagination
microservice MeetingRoom, Meeting, Participant with meeting
/**
* DEPLOYMENT
*/
deployment {
deploymentType kubernetes
appsFolders [ui, organization, leave, meeting, notification]
dockerRepositoryName "acrdevozs.azurecr.io"
serviceDiscoveryType no
istio true
kubernetesServiceType Ingress
kubernetesNamespace office
ingressDomain "23.101.74.16.nip.io"
}