Check.js 2.13 KB
Newer Older
zhujiazhan 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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
import Utils from "~/utils"

/**
* Brtsnd Check规则
*/
let checkObj = {
    "brdgrp.rmb.pts.adrblk"                      :null,
    "brdgrp.acb.namelc"                      :null,
    "brdgrp.prb.adrelc"                      :null,
    "brdgrp.blk.docdis"                      :null,
    "brtp.furide"                      :null,
    "brdgrp.acb.adrelc"                      :null,
    "brdgrp.beb.pts.adrblk"                      :null,
    "brtp.oth.pts.extkey"                      :null,
    "brdgrp.prb.pts.adrblk"                      :null,
    "brdgrp.beb.adrelc"                      :null,
    "brdgrp.prb.namelc"                      :null,
    "brdgrp.shp.namelc"                      :null,
    "brtp.prechkdat"                      :null,
    "brdgrp.rmb.pts.extkey"                      :null,
    "brdgrp.rec.rcvdat"                      :null,
    "brtp.oth.pts.adrblk"                      :null,
    "brdgrp.acb.pts.extkey"                      :null,
    "brdgrp.beb.pts.extkey"                      :null,
    "brdgrp.beb.namelc"                      :null,
    "brdgrp.rec.disdat"                      :null,
    "brdgrp.prb.pts.nam"                      :null,
    "brdgrp.ben.pts.nam"                      :null,
    "brdgrp.acb.pts.adrblk"                      :null,
    "brdgrp.rec.predat"                      :null,
    "brdgrp.prb.pts.extkey"                      :null,
    "brtp.oth.adrelc"                      :null,
    "brdgrp.shp.adrelc"                      :null,
    "brtp.oth.namelc"                      :null,
    "brdgrp.apl.pts.nam"                      :null,
    "brdgrp.rmb.namelc"                      :null,
    "brtp.ischktyp"                      :null,
    "brdgrp.shp.pts.adrblk"                      :null,
    "brdgrp.blk.setinsbr"                      :null,
    "brdgrp.rmb.adrelc"                      :null,
    "brdgrp.blk.comcon"                      :null,
    "brdgrp.shp.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