2019-04-02 16:15:46 +02:00
|
|
|
filter all
|
|
|
|
dto all with mapstruct
|
|
|
|
service all with serviceClass
|
2019-04-18 16:18:26 +02:00
|
|
|
paginate all with infinite-scroll
|
2019-04-02 11:07:19 +02:00
|
|
|
|
|
|
|
entity Customer {
|
2019-04-18 16:18:26 +02:00
|
|
|
reference Integer required unique min(10000) max(99999),
|
|
|
|
prefix String required maxlength(3) unique pattern(/[a-z][a-z0-9]+/),
|
2019-04-12 16:46:43 +02:00
|
|
|
name String required maxlength(80),
|
|
|
|
contractualSalutation String maxlength(80),
|
2019-04-18 16:18:26 +02:00
|
|
|
contractualAddress String required maxlength(400),
|
|
|
|
billingSalutation String maxlength(80),
|
2019-04-12 16:46:43 +02:00
|
|
|
billingAddress String maxlength(400),
|
2019-04-18 16:18:26 +02:00
|
|
|
remark String maxlength(160)
|
2019-04-02 11:07:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
entity Membership {
|
2019-04-18 16:18:26 +02:00
|
|
|
documentDate LocalDate required,
|
|
|
|
memberFrom LocalDate required,
|
|
|
|
memberUntil LocalDate,
|
|
|
|
remark String maxlength(160)
|
2019-04-02 11:07:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
enum ShareAction {
|
|
|
|
SUBSCRIPTION,
|
|
|
|
CANCELLATION
|
|
|
|
}
|
|
|
|
|
|
|
|
entity Share {
|
2019-04-18 16:18:26 +02:00
|
|
|
documentDate LocalDate required,
|
|
|
|
valueDate LocalDate required,
|
2019-04-02 11:07:19 +02:00
|
|
|
action ShareAction required,
|
|
|
|
quantity Integer required,
|
2019-04-18 16:18:26 +02:00
|
|
|
remark String maxlength(160)
|
2019-04-02 11:07:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
enum AssetAction {
|
|
|
|
PAYMENT,
|
|
|
|
HANDOVER,
|
|
|
|
ADOPTION,
|
|
|
|
LOSS,
|
|
|
|
CLEARING,
|
|
|
|
PAYBACK
|
|
|
|
}
|
|
|
|
|
|
|
|
entity Asset {
|
2019-04-18 16:18:26 +02:00
|
|
|
documentDate LocalDate required,
|
|
|
|
valueDate LocalDate required,
|
2019-04-02 11:07:19 +02:00
|
|
|
action AssetAction required,
|
|
|
|
amount BigDecimal required,
|
2019-04-18 16:18:26 +02:00
|
|
|
remark String maxlength(160)
|
2019-04-02 11:07:19 +02:00
|
|
|
}
|
|
|
|
|
2019-04-18 16:18:26 +02:00
|
|
|
entity SepaMandate {
|
|
|
|
reference String maxlength(40) unique required,
|
|
|
|
iban String maxlength(34),
|
|
|
|
bic String maxlength(11),
|
|
|
|
documentDate LocalDate required,
|
|
|
|
validFrom LocalDate required,
|
|
|
|
validUntil LocalDate,
|
|
|
|
lastUsed LocalDate,
|
|
|
|
cancellationDate LocalDate,
|
|
|
|
remark String maxlength(160)
|
2019-04-02 11:07:19 +02:00
|
|
|
}
|
|
|
|
|
2019-04-18 16:18:26 +02:00
|
|
|
relationship OneToMany {
|
|
|
|
Customer{membership} to Membership{customer(prefix) required},
|
|
|
|
Customer{sepamandate} to SepaMandate{customer(prefix) required},
|
|
|
|
Membership{share} to Share{membership(documentDate) required},
|
|
|
|
Membership{asset} to Asset{membership(documentDate) required}
|
|
|
|
}
|