-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtodo.txt
41 lines (39 loc) · 1.01 KB
/
todo.txt
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
승객
- id, password, accountInfo, cardInfo
기사
- id, password, licenseNumber, grade, provider(FK)
택시
- type, drivingStatus, driver(FK), registrationDate, registrationNumber, vehicleInfomation
결제 정보
- (Payment_Information)
client(FK), taxi or driver(FK), paymentDate, status, fare, callUsage(FK), provider(FK)
장소
- city, county, latitude, longitude, placeName
이용 내역
- date, taxi(FK), client(FK) ,departureTime, arravalTime, startingPoint, endPoint, amount, taxiType(FK X)
상호
- name, presidentName, registrationNumber, phoneNumber, address
Interfaces (controller) Client
- order
order controller
Facade
- order
- notification
Domain
- order
service
- pay validator
- pay processor
- order processor
- order store (commander)
-> store.save()
- notification
service
- notification processor
- notification validator
Infrastructure
order
-> storeimpl (commander)
-> repository
-> readerimpl (query)
->