Check.js 742 Bytes
import Utils from "~/utils"

/**
* Fxtfcn Check规则
*/
let checkObj = {
    "canamt"                      :null,
    "fxdgrp.apl.pts.adrblk"                      :null,
    "fxtp.usr.extkey"                      :null,
    "fxdgrp.cbs.opn2.amt"                      :null,
    "fxdgrp.act.pts.adrblk"                      :null,
    "fxdgrp.act.pts.extkey"                      :null,
    "fxdgrp.rec.ownref"                      :null,
    "fxdgrp.apl.pts.extkey"                      :null,
    "mtabut.clsflg"                      :null,
}

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