Check.js 1.21 KB
Newer Older
1 2 3 4 5 6
import Utils from "~/utils"

/**
* Inftrd Check规则
*/
let checkObj = {
“yanyuxin” committed
7 8 9 10 11 12 13 14 15 16 17
    "finmod.ovdintrat"                      :null,
    "finmod.fltval"                      :null,
    "finmod.ratchgdat"                      :null,
    "recpan.usr.extkey"                      :null,
    "finmod.intamt"                      :null,
    "finmod.act1"                      :null,
    "finmod.act3"                      :null,
    "finmod.intdat"                      :null,
    "trdgrp.rec.stagod"                      :null,
    "trdgrp.cbs.max.amt"                      :null,
    "trdgrp.fip.pts.adrblk"                      :null,
18
    "infcon.seaamtto"                      :null,
“yanyuxin” committed
19 20 21 22 23 24 25
    "trdgrp.fip.adrelc"                      :null,
    "finmod.ratchgprd"                      :null,
    "finmod.ratchgtyp"                      :null,
    "trdgrp.fip.pts.extkey"                      :null,
    "trdgrp.fip.namelc"                      :null,
    "finmod.ovdinttyp"                      :null,
    "finmod.flttyp"                      :null,
26 27 28 29 30 31 32 33 34
}

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