OtherUserCommentListRequestItem.ets 527 Bytes
export class OtherUserCommentListRequestItem {
  creatorId: string = ""
  pageSize: number = 20
  pageNum: number = 1
  time: string = ""
  userType: string = "1"
  userId: string = ""

  constructor(creatorId: string, pageSize: number,
              pageNum: number,
              time: string,
              userType: string,
              userId: string) {
    this.creatorId = creatorId
    this.pageSize = pageSize
    this.pageNum = pageNum
    this.time = time
    this.userType = userType
    this.userId = userId
  }
}