MineAppointmentItem.ets 1.04 KB
@Observed
export class MineAppointmentItem{
  appStyle:string =""   //"15"
  /*[
  "https://sitcontentjdcdn.aikan.pdnews.cn/sjbj-20231204/image/live/563cc8ce1ecc43b288f6cf60da66579c.jpeg?x-oss-process=image/resize,l_550,m_fill,h_450,w_800/quality,q_90/format,jpg"
  ]*/
  imageUrl:string[]

  liveId:number = -1   //20000007348
  planStartTime:string = ""    //2023-12-05 15:26:10
  timePre:string  //12月05日
  timeBack:string  //15:26
  relId:string = ""    //"500000017021"
  relType:number   //1
  startTime:string = ""    //""
  status:string      //"wait"
  title:string    //"视界运营位加权-加权中删除"
  isAppointment:boolean


  constructor(imageUrl:string[],status:string,title:string,isAppointment:boolean,timePre:string,timeBack:string,relType:number,liveId:number,
              relId:string) {
    this.imageUrl=imageUrl
    this.status=status
    this.title=title
    this.isAppointment=isAppointment
    this.timePre = timePre
    this.timeBack = timeBack
    this.relType = relType
    this.liveId = liveId
    this.relId = relId
  }
}