车辆接口更新

This commit is contained in:
wangshiming
2022-01-26 10:16:37 +08:00
parent 5b6737f76a
commit 5b7261022b
20 changed files with 589 additions and 93 deletions

View File

@ -4,7 +4,7 @@
* @Author : Shiming
* @Date : 2022-01-06 09:24:00
* @LastEditors : Shiming
* @LastEditTime : 2022-01-25 17:22:04
* @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.
*/
@ -12,15 +12,18 @@
import { NgModule, Type } from '@angular/core';
import { 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
insuranceManagementListComponent,
insuranceManagementSetComponent
];
@NgModule({
imports: [
SharedModule,
InsuranceManagementRoutingModule
InsuranceManagementRoutingModule,
],
declarations: COMPONENTS,
})