import Utils from "~/utils"

/**
* Cnysel Check规则
*/
let checkObj = {
    "cnyselp.cnyout.spayercountrycode"                      :null,
    "cnyselp.cnyvou.svouchercountrycode"                      :null,
    "cnyselp.cnyinc.spayercountrycode"                      :null,
    "cnyselp.cnyvou.sdebtorcountrycode"                      :null,
    "cnytyp"                      :null,
    "cnyselp.cnyvou.svoucheecountrycode"                      :null,
    "cnyselp.cnytra.samttranspurpose"                      :null,
    "cnyselp.cnyvou.sreversecountrycode"                      :null,
    "cnyselp.cnylib.sforeigncountrycode"                      :null,
}

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