Check.js 868 Bytes
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10
import Utils from "~/utils"

/**
* Infbdd Check规则
*/
let checkObj = {
    "bddgrp.rec.disdat"                      :null,
    "recpan.recget.sdamod.dadsnd"                      :null,
    "bddgrp.blk.docdis"                      :null,
    "recpan.furide"                      :null,
lixingliang committed
11 12 13
    "bddgrp.apl.pts.nam"                      :null,
    "bddgrp.prb.pts.nam"                      :null,
    "bddgrp.ben.pts.nam"                      :null,
fukai committed
14
    "bddgrp.blk.comcon"                      :null,
lixingliang committed
15
    "infcon.seaamtto"                      :null,
fukai committed
16 17 18 19 20 21 22 23 24 25 26
    "mtabut.coninf.conexedat"                      :null,
    "recpan.didget.sdamod.dadsnd"                      :null,
}

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