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.
49 lines
801 B
49 lines
801 B
/**
|
|
* 数据模型模块
|
|
* 集成所有数据模型
|
|
*/
|
|
|
|
const model = {
|
|
/**
|
|
* 审计权限模型
|
|
*/
|
|
AuditPermission: window.AuditPermission || {},
|
|
|
|
/**
|
|
* 公司模型
|
|
*/
|
|
Company: window.Company || {},
|
|
|
|
/**
|
|
* 客户模型
|
|
*/
|
|
Customer: window.Customer || {},
|
|
|
|
/**
|
|
* 客户联系人模型
|
|
*/
|
|
CustomerContact: window.CustomerContact || {},
|
|
|
|
/**
|
|
* 部门模型
|
|
*/
|
|
Department: window.Department || {},
|
|
|
|
/**
|
|
* 员工模型
|
|
*/
|
|
Employee: window.Employee || {},
|
|
|
|
/**
|
|
* 操作日志模型
|
|
*/
|
|
OperationLog: window.OperationLog || {},
|
|
|
|
/**
|
|
* 职位模型
|
|
*/
|
|
Position: window.Position || {}
|
|
};
|
|
|
|
// 导出模型模块
|
|
module.exports = model;
|