import Utils from "~/utils"

/**
* Fttfre Check规则
*/
let checkObj = {
    "fremsg.fulmt"                      :null,
    "fremsg.othmsg.pts.adrblk"                      :null,
    "fremsg.relmt"                      :null,
    "fremsg.othcc.pts.extkey"                      :null,
    "fremsg.strinf"                      :null,
    "fremsg.msgrol"                      :null,
    "fremsg.reldat"                      :null,
    "fremsg.othcc.pts.adrblk"                      :null,
    "fremsg.othmsg.pts.extkey"                      :null,
    "fremsg.ccrol"                      :null,
}

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