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

/**
* Lttdck Check规则
*/
let checkObj = {
    "liaall.misamt"                      :null,
    "btdgrp.blk.comcon"                      :null,
    "btdgrp.prb.pts.adrblk"                      :null,
    "btdgrp.prb.namelc"                      :null,
    "btdgrp.blk.setinsbt"                      :null,
    "btdgrp.rec.ownref"                      :null,
    "btdgrp.blk.docdis"                      :null,
    "btdgrp.rec.matdat"                      :null,
    "btdgrp.prb.pts.nam"                      :null,
    "btdgrp.prb.adrelc"                      :null,
    "setmod.dspflg"                      :null,
    "btdgrp.rec.rcvdatbe2"                      :null,
    "btdgrp.prb.pts.extkey"                      :null,
    "btdgrp.be1.pts.nam"                      :null,
    "btdgrp.blk.intdis"                      :null,
    "setmod.redamt"                      :null,
    "bttp.prbp.ptsget.sdamod.dadsnd"                      :null,
    "btdgrp.rec.orddatbe2"                      :null,
    "bttp.futhndflg"                      :null,
    "bttp.ltdget.sdamod.dadsnd"                      :null,
    "mtabut.coninf.conexedat"                      :null,
    "btdgrp.rec.doctypcod"                      :null,
    "bttp.recget.sdamod.dadsnd"                      :null,
    "setmod.docamt"                      :null,
    "btdgrp.cbs.max.amt"                      :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