import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { MerchantStoreRoutingModule } from './merchant-store-routing.module'; import { StoreListComponent } from './store-list/store-list.component'; import { StoreEditComponent } from './store-edit/store-edit.component'; import { StoreDetailComponent } from './store-detail/store-detail.component'; import {NgZorroAntdModule} from 'ng-zorro-antd'; import {SeparateModule} from '../../common/separate/separate.module'; import {FormsModule, ReactiveFormsModule} from '@angular/forms'; import {BreadcrumbModule} from '../../common/breadcrumb/breadcrumb.module'; import { OliComponent } from './oli/oli.component'; import { OliGunComponent } from './oli-gun/oli-gun.component'; import {AppCommonModule} from "../../app-common.module"; @NgModule({ declarations: [StoreListComponent, StoreEditComponent, StoreDetailComponent, OliComponent, OliGunComponent], imports: [ CommonModule, MerchantStoreRoutingModule, NgZorroAntdModule, SeparateModule, ReactiveFormsModule, FormsModule, BreadcrumbModule, AppCommonModule ] }) export class MerchantStoreModule { }