1234567891011121314151617181920212223242526 |
- 'use strict';
- /**
- * 项目的通用 相关常量
- *
- * @author Mai
- * @date 2018/9/25
- * @version
- */
- // 重新发送通知设置
- const notice_setting = {
- fixed: 72, // 固定间隔
- activity: { // 活动间隔
- first: 72,
- second: 48,
- later: 24,
- },
- mode: 'fixed', // 默认模式
- shield_times: { // 屏蔽时间段
- start: null,
- end: null,
- },
- };
- module.exports = {
- noticeSetting: notice_setting,
- };
|