project_setting.js 466 B

1234567891011121314151617181920212223242526
  1. 'use strict';
  2. /**
  3. * 项目的通用 相关常量
  4. *
  5. * @author Mai
  6. * @date 2018/9/25
  7. * @version
  8. */
  9. // 重新发送通知设置
  10. const notice_setting = {
  11. fixed: 72, // 固定间隔
  12. activity: { // 活动间隔
  13. first: 72,
  14. second: 48,
  15. later: 24,
  16. },
  17. mode: 'fixed', // 默认模式
  18. shield_times: { // 屏蔽时间段
  19. start: null,
  20. end: null,
  21. },
  22. };
  23. module.exports = {
  24. noticeSetting: notice_setting,
  25. };