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

/**
* Lttdav Check规则
*/
let checkObj = {
    "btdgrp.blk.comcon"                      :null,
    "btdgrp.prb.pts.adrblk"                      :null,
9 10
    "btdgrp.rmt.pts.extkey"                      :null,
    "btdgrp.rmt.namelc"                      :null,
11
    "btdgrp.prb.namelc"                      :null,
12
    "btdgrp.acb.pts.extkey"                      :null,
13 14
    "btdgrp.blk.setinsbt"                      :null,
    "btdgrp.blk.docdis"                      :null,
15
    "btdgrp.rmt.pts.adrblk"                      :null,
16 17
    "btdgrp.prb.pts.nam"                      :null,
    "btdgrp.prb.adrelc"                      :null,
18
    "btdgrp.rmt.adrelc"                      :null,
19 20 21 22
    "setmod.dspflg"                      :null,
    "btdgrp.prb.pts.extkey"                      :null,
    "btdgrp.be1.pts.nam"                      :null,
    "btdgrp.blk.intdis"                      :null,
23
    "btdgrp.rec.totamt"                      :null,
24
    "btdgrp.rec.advtyp"                      :null,
25
    "btdgrp.acb.pts.adrblk"                      :null,
26
    "btdgrp.rec.disdat"                      :null,
27
    "btdgrp.acb.adrelc"                      :null,
28
    "mtabut.coninf.conexedat"                      :null,
29
    "btdgrp.acb.namelc"                      :null,
30
    "setmod.docamt"                      :null,
31
    "btdgrp.cbs.max.amt"                      :null,
32 33 34 35 36 37 38 39 40 41 42
    "btdgrp.be2.pts.nam"                      :null,
    "btdgrp.rec.advdat"                      :null,
}

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