Check.js 1.61 KB
import Utils from "~/utils"

/**
* Bttdrv Check规则
*/
let checkObj = {
    "liaall.misamt"                      :null,
    "btdgrp.blk.comcon"                      :null,
    "btdgrp.prb.pts.adrblk"                      :null,
    "btdgrp.prp.pts.extkey"                      :null,
    "btdgrp.prp.namelc"                      :null,
    "btdgrp.prb.namelc"                      :null,
    "btdgrp.blk.setinsbt"                      :null,
    "btdgrp.blk.docdis"                      :null,
    "btdgrp.prb.pts.nam"                      :null,
    "btdgrp.prb.adrelc"                      :null,
    "btdgrp.oth.pts.adrblk"                      :null,
    "setmod.dspflg"                      :null,
    "btdgrp.prb.pts.extkey"                      :null,
    "btdgrp.be1.pts.nam"                      :null,
    "btdgrp.rec.rcvdatbe1"                      :null,
    "btdgrp.prp.adrelc"                      :null,
    "btdgrp.blk.intdis"                      :null,
    "btdgrp.oth.adrelc"                      :null,
    "mtabut.coninf.conexedat"                      :null,
    "btdgrp.prp.pts.adrblk"                      :null,
    "btdgrp.cbs.opnbe1amt.amt"                      :null,
    "btdgrp.oth.pts.extkey"                      :null,
    "setmod.docamt"                      :null,
    "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