DMP 数据格式

113 阅读1分钟

v5.3.0

lanhuapp.com/web/#/item/…

const data = {
	'condition': 'AND',
	'rules': [{
		'condition': 'OR',
		'rules': [{
			'rangeType': 'fixed',
			'range': '2021.3.1,2021.5.1',
			'weekRange': ['Mon', 'Tues'],
			'timeRange': ['early', 'morning'],
			'tagCode': 'T010101',
			'tagName': '机型',
			'dataSource': 2,
			'tagId': '1001',
			'tagType': 'string',
			'value': [{
					'id': 1,
					'attr': [{
						'categoryId': 12,
						'type': 'day',
						'operator': '<=',
						'num': 2
					}, {
						'categoryId': 21,
						'type': 'day',
						'operator': '<=',
						'num': 2
					}]
				},
				{
					'id': 2,
					'attr': [{
						'categoryId': 22,
						'type': 'day',
						'operator': '<=',
						'num': 2
					}, {
						'categoryId': 32,
						'type': 'day',
						'operator': '<=',
						'num': 2
					}]
				}
			]
		}]
	}]
}

const type = {
	'periodRange': {
		'fixed': '固定周期',
		'move': '动态周期'
	},
	'weekRange': {
		'Mon': '星期一',
		'Tues': '星期二',
		'Wed': '星期三',
		'Thur': '星期四',
		'Fri': '星期五',
		'Sat': '星期六',
		'Sun': '星期日'
	},
	'timeRange': {
		'early': '清晨',
		'morning': '早上',
		'forenoon': '上午',
		'noon': '中午',
		'afternoon': '下午',
		'nightfall': '傍晚',
		'evening': '晚上',
		'dawn': '凌晨'
	},
	'attrType': {
		'day': '天数',
		'count': '次数'
	}
}