人力资源
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

26 lines
742 B

'use strict';
module.exports = function (app, opts) {
const dayType = {
dayoff: '普假',
workday: '工作日',
festivals: '法定假',
}
const overtimeType = {
'发放加班补偿': '折算',
'调休': '调休'
}
const UserAttribute = {
jobDataSource: ['普通员工', '中层', '高层'],
activeStatusDataSource: ['在职', '离职', '特殊状态-特殊账号'],
organizationDataSource: ['江西飞尚科技有限公司', '江西飞尚工程质量检测有限公司',
'江西飞尚科技有限公司江苏分公司', '江西汇派科技有限公司'],
};
return {
dayType,
overtimeType,
UserAttribute
}
}