import Utils from "~/utils"

/**
* Fxtlcm Check规则
*/
let checkObj = {
    "fxdgrp.apl.pts.adrblk"                      :null,
    "mt30m.a53.pts.extkey"                      :null,
    "mt30m.comcur"                      :null,
    "fxdgrp.act.pts.extkey"                      :null,
    "fxdgrp.cbs.max.cur"                      :null,
    "mt30m.ini.pts.extkey"                      :null,
    "mt30m.b58.pts.extkey"                      :null,
    "mt30m.c88.pts.extkey"                      :null,
    "fxtp.cnychk"                      :null,
    "aplacc.pts.extkey"                      :null,
    "mt30m.b53.pts.extkey"                      :null,
    "mt30m.b56.pts.extkey"                      :null,
    "fxdgrp.apl.pts.ref"                      :null,
    "fxdgrp.apl.pts.extkey"                      :null,
    "fxtp.usr.extkey"                      :null,
    "mt30m.owc.pts.extkey"                      :null,
    "mt30m.enttyp"                      :null,
    "mt30m.comamt"                      :null,
    "mt30m.c85.pts.extkey"                      :null,
    "mt30m.c84.pts.extkey"                      :null,
    "mt30m.rbc.pts.extkey"                      :null,
}

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