Check.js 4.12 KB
Newer Older
孟冬雪 committed
1 2 3 4 5 6
import Utils from "~/utils"

/**
* Lttame Check规则
*/
let checkObj = {
7 8 9 10 11
    "lttamep.lcrdocamep.usrblk"                      :null,
    "ltdgrp.avt.adrelc"                      :null,
    "ltdgrp.rec.expplc"                      :null,
    "ltdgrp.be2.pts.adrblk"                      :null,
    "trnmod.swiadd.newamt"                      :null,
孟冬雪 committed
12
    "ltdgrp.a2t.adrelc"                      :null,
孟冬雪 committed
13
    "ltdgrp.blk.lcrdoc"                      :null,
孟冬雪 committed
14 15 16 17
    "ltdgrp.avt.namelc"                      :null,
    "ltdgrp.rec.stacty"                      :null,
    "ltdgrp.a2t.pts.extkey"                      :null,
    "lttp.usr.extkey"                      :null,
18
    "ltdgrp.rec.apprulrmb"                      :null,
孟冬雪 committed
19 20
    "ltdgrp.rec.opndat"                      :null,
    "ltdgrp.be2.pts.extkey"                      :null,
21 22 23 24
    "ltdgrp.rec.avbwth"                      :null,
    "setmod.dspflg"                      :null,
    "ltdgrp.blk.spcrcb"                      :null,
    "ltdgrp.blk.feetxt"                      :null,
孟冬雪 committed
25
    "lttamep.spcbenamep.usrblk"                      :null,
孟冬雪 committed
26 27 28 29 30 31 32 33
    "ltdgrp.be2.namelc"                      :null,
    "ltdgrp.rmt.adrelc"                      :null,
    "trnmod.swiadd.amenbr"                      :null,
    "ltdgrp.rec.avbby"                      :null,
    "trnmod.swiadd.addamt"                      :null,
    "ltdgrp.blk.preper"                      :null,
    "ltdgrp.rmt.namelc"                      :null,
    "ltdgrp.blk.addamtcov"                      :null,
34 35
    "ltdgrp.rmt.pts.extkey"                      :null,
    "lttamep.adlcndamep.usrblk"                      :null,
孟冬雪 committed
36 37
    "ltdgrp.cbs.max2.amt"                      :null,
    "ltdgrp.be2.adrelc"                      :null,
38
    "ltdgrp.blk.dftat"                      :null,
孟冬雪 committed
39 40 41 42
    "ltdgrp.adt.pts.adrblk"                      :null,
    "trnmod.swiadd.newnomtop"                      :null,
    "ltdgrp.rec.prepers18"                      :null,
    "trnmod.swiadd.newnomton"                      :null,
孟冬雪 committed
43
    "ltdgrp.blk.lcrgod"                      :null,
44 45
    "ltdgrp.blk.adlcnd"                      :null,
    "ltdgrp.be1.pts.nam"                      :null,
孟冬雪 committed
46 47
    "ltdgrp.be1.pts.extkey"                      :null,
    "ltdgrp.avt.pts.extkey"                      :null,
48 49
    "trnmod.swiadd.newshpdat"                      :null,
    "ltdgrp.blk.spcben"                      :null,
孟冬雪 committed
50
    "ltdgrp.rec.apprultxt"                      :null,
51
    "trnmod.swiadd.newexpdat"                      :null,
孟冬雪 committed
52
    "ltdgrp.rmt.pts.adrblk"                      :null,
53 54 55 56
    "ltdgrp.avt.pts.adrblk"                      :null,
    "mtabut.coninf.conexedat"                      :null,
    "ltdgrp.a2t.pts.adrblk"                      :null,
    "ltdgrp.adt.pts.extkey"                      :null,
孟冬雪 committed
57
    "lttamep.lcrgodamep.usrblk"                      :null,
58
    "ltdgrp.rec.rmbcha"                      :null,
孟冬雪 committed
59
    "ltdgrp.adt.namelc"                      :null,
60 61
    "ltdgrp.blk.mixdet"                      :null,
    "ltdgrp.drw.adrelc"                      :null,
孟冬雪 committed
62 63 64 65
    "ltdgrp.con.adrelc"                      :null,
    "ltdgrp.rec.lcrtyp"                      :null,
    "ltdgrp.rec.tenmaxday"                      :null,
    "ltdgrp.rec.apprul"                      :null,
66
    "setmod.docamt"                      :null,
孟冬雪 committed
67
    "trnmod.swiadd.prepers18"                      :null,
68 69 70 71 72
    "ltdgrp.drw.pts.extkey"                      :null,
    "lttamep.spcrcbamep.usrblk"                      :null,
    "ltdgrp.blk.insbnk"                      :null,
    "ltdgrp.con.pts.extkey"                      :null,
    "ltdgrp.con.namelc"                      :null,
孟冬雪 committed
73
    "ltdgrp.blk.defdet"                      :null,
74
    "ltdgrp.adt.adrelc"                      :null,
孟冬雪 committed
75 76 77 78 79 80 81 82 83 84 85 86 87 88
    "ltdgrp.drw.namelc"                      :null,
    "ltdgrp.drw.pts.adrblk"                      :null,
    "trnmod.swiadd.purpos"                      :null,
    "ltdgrp.a2t.namelc"                      :null,
    "ltdgrp.con.pts.adrblk"                      :null,
}

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