Files
bbq/src/app/routes/supply-goods/supply-goods.module.ts
wangshiming 8bf3a60425 批量审核
2022-01-18 17:44:03 +08:00

31 lines
1.0 KiB
TypeScript

/*
* @Description :
* @Version : 1.0
* @Author : Shiming
* @Date : 2021-12-01 09:24:09
* @LastEditors : Shiming
* @LastEditTime : 2022-01-18 17:25:15
* @FilePath : \\tms-obc-web\\src\\app\\routes\\supply-goods\\supply-goods.module.ts
* Copyright (C) 2022 huzhenhong. All rights reserved.
*/
import { NgModule } from '@angular/core';
import { SharedModule } from '@shared';
import { SupplyGoodsComponentListCarloadComponent } from './components/carload/carload.component';
import { SupplyGoodsComponentListLargeAmountComponent } from './components/large-amount/large-amount.component';
import { SupplyGoodsComponentListComponent } from './components/list/list.component';
import { SupplyGoodsRoutingModule } from './supply-goods-routing.module';
const COMPONENTS = [
SupplyGoodsComponentListComponent,
SupplyGoodsComponentListCarloadComponent,
SupplyGoodsComponentListLargeAmountComponent
];
@NgModule({
imports: [SharedModule, SupplyGoodsRoutingModule],
declarations: [...COMPONENTS]
})
export class SupplyGoodsModule {}