Check.js 1.35 KB
Newer Older
fukai committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
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