import Utils from "~/utils"
/**
* Msgsel Check规则
*/
let checkObj = {
"sndp.othref" :null,
"sndp.msgtyp" :null,
"sndp.ownref" :null,
"sndp.uetr" :null,
"sndp.revbak" :null,
"sndp.sndbak" :null,
"sndp.actbic" :null,
}
for (const key in checkObj) {
if (Object.hasOwnProperty.call(checkObj, key)) {
checkObj[key] = checkObj[key] ? checkObj[key] : Utils.reflectCheck(key)
}
}
export default checkObj