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.
28 lines
631 B
28 lines
631 B
/**
|
|
* 模型管理索引文件
|
|
* 集中导出所有数据模型
|
|
*/
|
|
|
|
// 导入各个模型
|
|
import AuditPermission from './auditPermission.js';
|
|
import Company from './company.js';
|
|
import Customer from './customer.js';
|
|
import CustomerContact from './customerContact.js';
|
|
import Department from './department.js';
|
|
import Employee from './employee.js';
|
|
import OperationLog from './operationLog.js';
|
|
import Position from './position.js';
|
|
|
|
// 导出所有模型
|
|
const models = {
|
|
AuditPermission,
|
|
Company,
|
|
Customer,
|
|
CustomerContact,
|
|
Department,
|
|
Employee,
|
|
OperationLog,
|
|
Position
|
|
};
|
|
|
|
export default models;
|