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

/**
* Bttsnd Check规则
*/
let checkObj = {
    "liaall.misamt"                      :null,
    "btdgrp.blk.comcon"                      :null,
sheyinchen committed
9 10
    "rmbclm.acwacw.pts.extkey"                      :null,
    "cnybop.outflg"                      :null,
m  
1198835488@qq.com committed
11 12 13 14 15 16
    "btdgrp.prb.pts.nam"                      :null,
    "btdgrp.prb.adrelc"                      :null,
    "btdgrp.oth.pts.adrblk"                      :null,
    "setmod.dspflg"                      :null,
    "btdgrp.prb.pts.extkey"                      :null,
    "btdgrp.blk.intdis"                      :null,
sheyinchen committed
17 18
    "cnybop.cnyflg"                      :null,
    "rmbclm.bebbeb.adrelc"                      :null,
m  
1198835488@qq.com committed
19
    "btdgrp.oth.adrelc"                      :null,
sheyinchen committed
20
    "rmbclm.acwacw.namelc"                      :null,
m  
1198835488@qq.com committed
21
    "btdgrp.rec.disdat"                      :null,
sheyinchen committed
22
    "rmbclm.rmbrmb.pts.adrblk"                      :null,
m  
1198835488@qq.com committed
23 24
    "btdgrp.oth.pts.extkey"                      :null,
    "btdgrp.be2.pts.nam"                      :null,
sheyinchen committed
25 26
    "rmbclm.rmbrmb.namelc"                      :null,
    "rmbclm.bebbeb.pts.extkey"                      :null,
m  
1198835488@qq.com committed
27 28
    "btdgrp.blk.benref"                      :null,
    "btdgrp.prb.pts.adrblk"                      :null,
sheyinchen committed
29
    "rmbclm.rmbrmb.pts.extkey"                      :null,
m  
1198835488@qq.com committed
30 31 32 33
    "btdgrp.prb.namelc"                      :null,
    "btdgrp.blk.setinsbt"                      :null,
    "btdgrp.blk.docdis"                      :null,
    "bttp.furide"                      :null,
sheyinchen committed
34 35
    "cnybop.traflg"                      :null,
    "rmbclm.acwacw.pts.adrblk"                      :null,
m  
1198835488@qq.com committed
36
    "btdgrp.be1.pts.nam"                      :null,
sheyinchen committed
37 38 39
    "mtabut.coninf.conexedat"                      :null,
    "rmbclm.bebbeb.namelc"                      :null,
    "cnybop.libflg"                      :null,
m  
1198835488@qq.com committed
40
    "setmod.docamt"                      :null,
sheyinchen committed
41 42 43
    "rmbclm.rmbrmb.adrelc"                      :null,
    "rmbclm.bebbeb.pts.adrblk"                      :null,
    "rmbclm.acwacw.adrelc"                      :null,
m  
1198835488@qq.com committed
44
    "btdgrp.oth.namelc"                      :null,
sheyinchen committed
45
    "cnybop.vouflg"                      :null,
m  
1198835488@qq.com committed
46 47 48 49 50 51 52 53 54
}

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