1、export interface 只是對(duì)一個(gè)東西的聲明(不能具體的操作)
2撬陵、export class 導(dǎo)出一個(gè)類 類里面可有有參數(shù) 可以有一寫函數(shù) 方法(干一些具體的事情)
//exp
export interface IBannerS {
type: string;/** 活動(dòng)平臺(tái) */
}
export class BannerSComponent implements OnInit {
formModel: FormGroup
dataList = [] as Array<IBanner>
banner = {} as IBanner
}