Files
smart-admin/smart-admin-web/javascript-ant-design-vue3/src/constants/support/data-tracer-const.js
2022-10-22 20:49:25 +08:00

30 lines
534 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* 数据变动记录
*
* @Author: 1024创新实验室-主任:卓大
* @Date: 2022-09-03 22:09:10
* @Wechat: zhuda1024
* @Email: lab1024@163.com
* @Copyright 1024创新实验室 https://1024lab.net 2012-2022
*/
// 业务类型
export const DATA_TRACER_TYPE_ENUM = {
GOODS: {
value: 1,
desc: '商品',
},
OA_NOTICE: {
value: 2,
desc: 'OA-通知公告',
},
OA_ENTERPRISE: {
value: 3,
desc: 'OA-企业信息',
},
};
export default {
DATA_TRACER_TYPE_ENUM,
};