cacheCfg.js 376 B

1234567891011121314
  1. /**
  2. * Created by Tony on 2017/3/24.
  3. */
  4. var rptUtil = require("../modules/reports/util/rpt_util");
  5. var stdTypesUtil = require("../public/cache/std_glj_type_util");
  6. //rptUtil.setReportDefaultCache();
  7. module.exports = {
  8. setupDftCache: function() {
  9. rptUtil.setReportDefaultCache();
  10. stdTypesUtil.setStdGljTypeCache();
  11. //and others...(if any)
  12. }
  13. }