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
import Utils from "~/utils"
/**
* Brtset Check规则
*/
let checkObj = {
"liaall.misamt" :null,
"brdgrp.prb.adrelc" :null,
"cnybop.outflg" :null,
"cfatrt.cfaflg" :null,
"brdgrp.prb.pts.adrblk" :null,
"liaall.limmod.limpts.oth.pts.nam" :null,
"setmod.dspflg" :null,
"cfatrt.ownextkey" :null,
"liaall.liaccv.totcovamt" :null,
"cfabrt.ownextkey" :null,
"cfabrt.cfaflg" :null,
"cfatrt.cda.useofunds" :null,
"liaall.limmod.limpts.wrk.pts.nam" :null,
"cnybop.cnyflg" :null,
"cfatrt.cda.cfeogudamount" :null,
"brdgrp.prb.pts.ref" :null,
"brdgrp.apl.pts.nam" :null,
"cfadft.ownextkey" :null,
"brtp.ischktyp" :null,
"hmdmod2.bennam" :null,
"trnmod.swftyp" :null,
"liaall.limmod.limpts.oth.pts.extkey" :null,
"liaall.limmod.ownref" :null,
"liaall.limmod.ecifno" :null,
"bopmod.szflg" :null,
"brdgrp.cbs.max.amt" :null,
"cfadft.cfaflg" :null,
"cnybop.traflg" :null,
"brdgrp.prb.namelc" :null,
"brtp.prechkdat" :null,
"brdgrp.prb.pts.nam" :null,
"liaall.tenstm" :null,
"brdgrp.ben.pts.nam" :null,
"setmod.redamt" :null,
"aamset.utlamt2" :null,
"brdgrp.prb.pts.extkey" :null,
"trnmod.cmtflg" :null,
"liaall.limmod.limpts.wrk.pts.extkey" :null,
"bopmod.basflg" :null,
"brdgrp.rec.frepayflg" :null,
"mtabut.coninf.conexedat" :null,
"liaall.limmod.limpts.nonrevflg1" :null,
"cnybop.libflg" :null,
"bopmod.ownextkey" :null,
"cfatrt.cda.cfeogudcurr" :null,
"setmod.docamt" :null,
"liaall.liaccv.cshpct" :null,
"bopmod.acttyp" :null,
"liaall.liaccv.relcshpct" :null,
"mtabut.clsflg" :null,
"cnybop.vouflg" :null,
}
for (const key in checkObj) {
if (Object.hasOwnProperty.call(checkObj, key)) {
checkObj[key] = checkObj[key] ? checkObj[key] : Utils.reflectCheck(key)
}
}
export default checkObj