/* * @Description : * @Version : 1.0 * @Author : Shiming * @Date : 2022-01-06 09:24:00 * @LastEditors : Shiming * @LastEditTime : 2022-01-25 20:45:45 * @FilePath : \\tms-obc-web\\src\\app\\routes\\insurance-management\\insurance-management.module.ts * Copyright (C) 2022 huzhenhong. All rights reserved. */ import { NgModule, Type } from '@angular/core'; import { InsuranceTableModule, SharedModule } from '@shared'; import { insuranceManagementListComponent } from './components/list/list.component'; import { insuranceManagementSetComponent } from './components/set/set.component'; import { InsuranceManagementRoutingModule } from './insurance-management-routing.module'; const COMPONENTS: Type[] = [insuranceManagementListComponent, insuranceManagementSetComponent]; @NgModule({ imports: [SharedModule, InsuranceManagementRoutingModule, InsuranceTableModule], declarations: COMPONENTS }) export class InsuranceManagementModule {}