import Utils from "~/utils"

/**
* Dbcinf Check规则
*/
let checkObj = {
    "recgrp.bas.othamt"                      :null,
    "recgrp.bas.outchargeamt"                      :null,
    "recgrp.bas.lcbgno"                      :null,
    "recgrp.dcl.paytype"                      :null,
    "recgrp.bas.custnm"                      :null,
    "recgrp.dcl.tx2rem"                      :null,
    "recgrp.vrf.actiontype"                      :null,
    "recgrp.dcl.txrem"                      :null,
    "recgrp.bas.txccy"                      :null,
    "ctlmod.wrkdbl.trdtyp"                      :null,
    "recgrp.bas.actuamt"                      :null,
    "recgrp.vrf.contrno"                      :null,
    "recgrp.bas.custcod"                      :null,
    "recgrp.bas.fcyamt"                      :null,
    "recgrp.dcl.txcode2"                      :null,
    "recgrp.bas.actuccy"                      :null,
    "recgrp.bas.txamt"                      :null,
    "recgrp.bas.outchargeccy"                      :null,
    "recgrp.vrf.inptelc"                      :null,
    "recgrp.dcl.country"                      :null,
    "recgrp.bas.actiondesc"                      :null,
    "recgrp.bas.lcyamt"                      :null,
    "recgrp.bas.issdate"                      :null,
    "recgrp.bas.actiontype"                      :null,
    "recgrp.bas.rptno"                      :null,
    "recgrp.dcl.tc1amt"                      :null,
    "recgrp.dcl.rptdate"                      :null,
    "recgrp.dcl.crtuser"                      :null,
    "ctlmod.dbl.reldat"                      :null,
    "recgrp.dcl.inptelc"                      :null,
    "recgrp.bas.othacc"                      :null,
    "recgrp.bas.oppuser"                      :null,
    "recgrp.bas.exrate"                      :null,
    "bopbut.acttyp"                      :null,
    "recgrp.bas.lcyacc"                      :null,
    "recgrp.bas.idcode"                      :null,
    "recgrp.vrf.crtuser"                      :null,
    "recgrp.bas.fcyacc"                      :null,
    "recgrp.vrf.invoino"                      :null,
    "recgrp.dcl.isref"                      :null,
    "recgrp.dcl.txcode"                      :null,
    "recgrp.bas.buscode"                      :null,
    "recgrp.vrf.impdate"                      :null,
    "recgrp.dcl.tc2amt"                      :null,
    "recgrp.bas.custype"                      :null,
    "recgrp.vrf.rptdate"                      :null,
    "recgrp.dcl.actiontype"                      :null,
    "recgrp.bas.methods"                      :null,
}

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