CommentLikeOperationRequestItem.ets 780 Bytes
// {
// "targetId":"30000627490",
// "commentId":"303318",
// "targetType":"13",
// "userName":"人民日报网友aPrtq5",
// "userHeaderUrl":"https://sitcontentjdcdn.aikan.pdnews.cn//img/user/2024031215/48d5bd53227d436b9faa937b3ac14600.png",
// "status":1
// }
export class CommentLikeOperationRequestItem{
  targetId:string = ""
  commentId:string = ""
  targetType:string = ""
  userName:string = ""
  userHeaderUrl:string = ""
  status:number = 1

  constructor(targetId: string,  commentId: string,  targetType: string ,  userName: string,
  userHeaderUrl: string ,  status:number) {
    this.targetId = targetId
    this.commentId = commentId
    this.targetType = targetType
    this.userName = userName
    this.userHeaderUrl = userHeaderUrl
    this.status = status
}

}