SearchHotContentItem.ets 279 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 export class SearchHotContentItem{ hotEntry:string = "" mark:number = 0 //1 热 2 新 sequence:number = 0//序号 constructor(hotEntry: string , mark: number , sequence: number ) { this.hotEntry = hotEntry this.mark = mark this.sequence = sequence } }