24 lines
979 B
TypeScript
24 lines
979 B
TypeScript
/*
|
|
* @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<void>[] = [insuranceManagementListComponent, insuranceManagementSetComponent];
|
|
|
|
@NgModule({
|
|
imports: [SharedModule, InsuranceManagementRoutingModule, InsuranceTableModule],
|
|
declarations: COMPONENTS
|
|
})
|
|
export class InsuranceManagementModule {}
|