Check.js 907 Bytes
Newer Older
wangren 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
import Utils from "~/utils"

/**
* Infpty Check规则
*/
let checkObj = {
    "seatypo"                      :null,
    "recgrp.rec.hbkaccflg"                      :null,
    "recgrp.hbk.extkey"                      :null,
    "seatypc"                      :null,
    "seatypb"                      :null,
    "recgrp.ptamaa.issbchinf"                      :null,
    "seatypa"                      :null,
    "seatyph"                      :null,
    "recgrp.rec.heqaccflg"                      :null,
    "recgrp.heq.extkey"                      :null,
    "recgrp.rec.extkey"                      :null,
    "recpan.bchkey"                      :null,
    "recgrp.rec.juscod"                      :null,
}

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