【V3.5.0】1、【新增】轻量级定时任务 SmartJob;2、【新增】站内信;3、【新增】个人中心;4、【新增】岗位管理;5、【优化】部门员工管理

This commit is contained in:
zhuoda
2024-07-16 00:20:02 +08:00
parent 23e8ea55e1
commit 716b6303e3
504 changed files with 59745 additions and 1110 deletions

View File

@@ -0,0 +1,30 @@
/*
* @Description: file content
* @Author: yandy
* @Date: 2022-07-24 21:43:43
* @LastEditors:
* @LastEditTime: 2022-07-24 21:43:43
*/
export const MESSAGE_TYPE_ENUM = {
MAIL: {
value: 1,
desc: '站内信'
},
ORDER: {
value: 2,
desc: '订单'
},
};
export const MESSAGE_RECEIVE_TYPE_ENUM = {
EMPLOYEE: {
value: 1,
desc: '员工'
},
};
export default {
MESSAGE_TYPE_ENUM,
MESSAGE_RECEIVE_TYPE_ENUM
};