-
Notifications
You must be signed in to change notification settings - Fork 0
/
cmf.jh
76 lines (57 loc) · 2.03 KB
/
cmf.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
entity CMFCodes {
codeTableKey BigDecimal required,
codeEntyName String required maxlength(128),
codeEntyDefinitionText String required maxlength(800),
codeTableName String required maxlength(64),
codeAttrbName String required maxlength(128),
descAttrbName String required maxlength(128),
codeColName String required maxlength(64),
descColName String required maxlength(64),
commentText String required maxlength(800),
nameAttrbName String required maxlength(128),
nameColName String required maxlength(30),
createDate Instant,
createUserId String required maxlength(20),
updDate Instant,
updUserId String required maxlength(20)
}
entity CMFCodesValues {
codeValKey BigDecimal required,
codeTableKey BigDecimal required,
codeClassfctnTypeCode String required maxlength(20),
srcSysCode String required maxlength(20),
lifecycleStatusCode String required maxlength(20)
codeColValCode String maxlength(256),
descColValText String maxlength(800),
effDate Instant,
endDate Instant,
commentText String maxlength(800),
nameColValName String maxlength(512),
createDate Instant,
createUserId String required maxlength(20),
updDate Instant,
updUserId String required maxlength(20)
}
entity CMFCodesMap {
codeValKey BigDecimal required,
codeValRltdKey BigDecimal required,
mapTypeCode String required maxlength(20),
effDate Instant,
endDate Instant,
commentText String maxlength(800),
createDate Instant,
createUserId String required maxlength(20),
updDate Instant,
updUserId String required maxlength(20)
}
relationship OneToOne {
CMFCodesMap {CMFCodeValues} to CMFCodesValues
}
relationship OneToOne {
CMFCodesMap {CMFCodeValuesRltd} to CMFCodesValues
}
// service all with serviceImpl
//Filter entities
filter *
// Set pagination options
paginate * with pagination