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
export default class Dbw{
constructor() {
this.data = {
trncorco: {
inidatfro: new Date(), // Date of entry of Transaction .trncorco.inidatfro
inidattil: new Date(), // Date of entry of Transaction until .trncorco.inidattil
entries: [], // .entries
ownref: '', // Reference .trncorco.ownref
srv: '',
relflg: '',
cod: '',
bchkeyinr: '',
trnstm: {
relflg: '',
inr: '',
relres: '',
srv: '',
sta: '',
wfssub: '',
inifrm: '',
ownref: '',
reloricur: '',
reloriamt: '',
inidattim: '',
usr: ''
},
sourcedir: '',
filename: '',
targetdir: '',
}
}
}
}
export const Pattern = {
"trncorco.sourcedir": [
{ "required": true, "message": "必输项", "trigger": ["blur","change"] },
],
"trncorco.targetdir": [
{ "required": true, "message": "必输项", "trigger": ["blur","change"] },
],
"trncorco.filename": [
{ "required": true, "message": "必输项", "trigger": ["blur","change"] },
],
}