import Utils from "~/utils"
/**
* Boprcv Check规则
*/
let checkObj = {
"bopcfg.fincod" :null,
"bopcfg.indir" :null,
"bopcfg.ftpsndscp" :null,
"bopcfg.outdir" :null,
"bopcfg.ftprcvscp" :null,
}
for (const key in checkObj) {
if (Object.hasOwnProperty.call(checkObj, key)) {
checkObj[key] = checkObj[key] ? checkObj[key] : Utils.reflectCheck(key)
}
}
export default checkObj