27 lines
1012 B
TypeScript
27 lines
1012 B
TypeScript
/*
|
|
* @Author: your name
|
|
* @Date: 2021-11-29 15:22:34
|
|
* @LastEditTime: 2021-12-01 15:03:22
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
*/
|
|
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 {}
|