-
Notifications
You must be signed in to change notification settings - Fork 1
/
jhipster-jdl.jh
167 lines (124 loc) · 2.69 KB
/
jhipster-jdl.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
enum CustomerType{
NATURAL_PERSON,
LEGAL_PERSON
}
entity Customer {
type CustomerType,
organizationName String,
firstName String required,
middleName String,
lastName String,
phoneNumber String required,
city String,
country String,
address String,
}
entity CustomerPaymentMethod{
code String,
creditCardNumber String,
details String
}
entity ReferencePaymentMethod {
description String,
}
entity ReferenceLanguage {
lang String,
}
entity ProductDescription {
content String,
}
entity Product {
returnAuthorization Boolean,
name String required,
price BigDecimal required,
size String,
color String required,
description String required,
otherDetails String,
}
entity Picture {
path String,
image ImageBlob,
}
entity Category{
name String required,
description String required,
}
entity ShopingCart {
date ZonedDateTime,
}
entity WishList {
name String,
}
entity Promotion {
description String,
}
entity Payment {
paymentDate LocalDate,
ammount BigDecimal,
}
entity Supplier {
name String required,
}
entity ReferenceInvoiceStatus {
number String,
invoiceDate ZonedDateTime,
invoiceDetails String,
}
entity Orders {
datePlaced ZonedDateTime,
details String
}
entity OrderItem {
quantity BigDecimal,
price BigDecimal,
details String
}
entity OrderItemStatusCode {
description String,
}
entity Shipment {
trackingNumber String,
shipmentDate ZonedDateTime,
otherDetails String,
}
entity Invoice {
number String,
invoiceDate ZonedDateTime,
invoiceDetails String,
}
relationship OneToMany {
Category{category} to Category,
Customer{shopingcart} to ShopingCart,
Customer{paymentmethod} to CustomerPaymentMethod,
Product{product} to Product,
Invoice{payment} to Payment,
Orders{invoice} to Invoice{order},
Orders{shipment} to Shipment,
Orders{item} to OrderItem,
ShopingCart{product} to Product,
Product{description} to ProductDescription,
Shipment{invoice} to Invoice,
Product{image} to Picture,
Promotion{product} to Product
}
relationship ManyToOne {
CustomerPaymentMethod{reference} to ReferencePaymentMethod,
Payment{method} to CustomerPaymentMethod,
Invoice{status} to ReferenceInvoiceStatus,
OrderItem{status} to OrderItemStatusCode,
Orders{productos} to Product,
Product{category} to Category,
ProductDescription{lang} to ReferenceLanguage
}
relationship ManyToMany{
Supplier{product} to Product{supplier},
WishList{product} to Product{wlist}
}
relationship OneToOne{
Customer{wishlist} to WishList,
Customer{user} to User
}
paginate Product with infinite-scroll
paginate Product with pager
service all with serviceImpl