Check.js 1.61 KB
Newer Older
m  
1198835488@qq.com committed
1 2 3 4 5 6
import Utils from "~/utils"

/**
* Bttdrv Check规则
*/
let checkObj = {
7 8
    "liaall.misamt"                      :null,
    "btdgrp.blk.comcon"                      :null,
m  
1198835488@qq.com committed
9 10 11 12
    "btdgrp.prb.pts.adrblk"                      :null,
    "btdgrp.prp.pts.extkey"                      :null,
    "btdgrp.prp.namelc"                      :null,
    "btdgrp.prb.namelc"                      :null,
13 14
    "btdgrp.blk.setinsbt"                      :null,
    "btdgrp.blk.docdis"                      :null,
m  
1198835488@qq.com committed
15 16 17
    "btdgrp.prb.pts.nam"                      :null,
    "btdgrp.prb.adrelc"                      :null,
    "btdgrp.oth.pts.adrblk"                      :null,
18
    "setmod.dspflg"                      :null,
m  
1198835488@qq.com committed
19 20
    "btdgrp.prb.pts.extkey"                      :null,
    "btdgrp.be1.pts.nam"                      :null,
21
    "btdgrp.rec.rcvdatbe1"                      :null,
m  
1198835488@qq.com committed
22
    "btdgrp.prp.adrelc"                      :null,
23
    "btdgrp.blk.intdis"                      :null,
m  
1198835488@qq.com committed
24
    "btdgrp.oth.adrelc"                      :null,
25
    "mtabut.coninf.conexedat"                      :null,
m  
1198835488@qq.com committed
26 27 28
    "btdgrp.prp.pts.adrblk"                      :null,
    "btdgrp.cbs.opnbe1amt.amt"                      :null,
    "btdgrp.oth.pts.extkey"                      :null,
29
    "setmod.docamt"                      :null,
m  
1198835488@qq.com committed
30 31 32 33 34 35 36 37 38 39 40
    "btdgrp.oth.namelc"                      :null,
    "btdgrp.be2.pts.nam"                      :null,
}

for (const key in checkObj) {
    if (Object.hasOwnProperty.call(checkObj, key)) {
        checkObj[key] = checkObj[key] ? checkObj[key] : Utils.reflectCheck(key)
    }
}
export default checkObj