-
Notifications
You must be signed in to change notification settings - Fork 0
/
invoices-model.jh
74 lines (62 loc) · 1.31 KB
/
invoices-model.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
entity UserAccount {
email String required,
password String required,
role String
}
entity Contractor {
name String,
identificationNumber String,
taxIdentificationNumber String,
name String,
street String,
city String,
postcode String,
identificationNumber String,
taxIdentificationNumber String,
bankCode String,
bankAccountNumber String,
bankAccountPrefix String
}
entity Customer {
name String,
identificationNumber String,
taxIdentificationNumber String,
name String,
street String,
city String,
postcode String
}
entity Invoice {
number String,
invoiceDate Instant,
dueDate Instant,
tax Integer
}
entity Item {
itemName String,
unit String,
price Integer
}
relationship ManyToOne {
Contractor{user} to UserAccount
}
relationship ManyToOne {
Customer{user} to UserAccount
}
relationship ManyToOne {
Invoice{contractor} to Contractor
}
relationship ManyToOne {
Invoice{customer} to Customer
}
relationship ManyToMany {
Invoice{items} to Item
}
// Set pagination options
paginate Invoice with infinite-scroll
paginate Contractor, Customer, Item with pagination
dto * with mapstruct
// Set service options to all except few
service all with serviceImpl except Employee, Job
// Set an angular suffix
angularSuffix * with mySuffix