SearchSuggestRequestItem.ets 541 Bytes
export class SearchSuggestRequestItem{
  recType: number = 0
  relId: string = ""
  contentId: string = ""
  imei: string = ""
  userId: string = ""
  contentType: number = 0
  channelId: string = ""

  constructor(recType: number, relId: string , contentId: string , imei: string ,userId: string ,
  contentType: number,channelId: string ) {
    this.recType = recType
    this.relId = relId
    this.contentId = contentId
    this.imei = imei
    this.userId = userId
    this.contentType = contentType
    this.channelId = channelId
  }
}