admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
fanli/src/main/java/com/yeshi/fanli/vo/msg/UserSystemMsgVO.java
@@ -1,94 +1,115 @@
package com.yeshi.fanli.vo.msg;
public class UserSystemMsgVO {
   private Long id;
   private String portrait;
   private String type;
   private Boolean solved;
   private String title;
   private String content;
   private String timeTag;
   private String createTime;
   public UserSystemMsgVO(Long id, String type, Boolean solved, String title, String content, String timeTag,
         String portrait, String createTime) {
      this.id = id;
      this.type = type;
      this.solved = solved;
      this.title = title;
      this.content = content;
      this.timeTag = timeTag;
      this.portrait = portrait;
      this.createTime = createTime;
   }
   public UserSystemMsgVO() {
   }
   public Long getId() {
      return id;
   }
   public void setId(Long id) {
      this.id = id;
   }
   public String getPortrait() {
      return portrait;
   }
   public void setPortrait(String portrait) {
      this.portrait = portrait;
   }
   public String getType() {
      return type;
   }
   public void setType(String type) {
      this.type = type;
   }
   public Boolean getSolved() {
      return solved;
   }
   public void setSolved(Boolean solved) {
      this.solved = solved;
   }
   public String getTitle() {
      return title;
   }
   public void setTitle(String title) {
      this.title = title;
   }
   public String getContent() {
      return content;
   }
   public void setContent(String content) {
      this.content = content;
   }
   public String getTimeTag() {
      return timeTag;
   }
   public void setTimeTag(String timeTag) {
      this.timeTag = timeTag;
   }
   public String getCreateTime() {
      return createTime;
   }
   public void setCreateTime(String createTime) {
      this.createTime = createTime;
   }
}
package com.yeshi.fanli.vo.msg;
import com.yeshi.fanli.entity.common.JumpDetailV2;
public class UserSystemMsgVO {
   private Long id;
   private String portrait;
   private String type;
   private Boolean solved;
   private String title;
   private String content;
   private String timeTag;
   private String createTime;
   private int unReadCount;
   private JumpDetailV2 jumpDetail;// 跳转详情
   public UserSystemMsgVO(Long id, String type, Boolean solved, String title, String content, String timeTag,
         String portrait, String createTime, int unReadCount) {
      this.id = id;
      this.type = type;
      this.solved = solved;
      this.title = title;
      this.content = content;
      this.timeTag = timeTag;
      this.portrait = portrait;
      this.createTime = createTime;
      this.unReadCount = unReadCount;
   }
   public UserSystemMsgVO() {
   }
   public Long getId() {
      return id;
   }
   public void setId(Long id) {
      this.id = id;
   }
   public int getUnReadCount() {
      return unReadCount;
   }
   public void setUnReadCount(int unReadCount) {
      this.unReadCount = unReadCount;
   }
   public String getPortrait() {
      return portrait;
   }
   public void setPortrait(String portrait) {
      this.portrait = portrait;
   }
   public String getType() {
      return type;
   }
   public void setType(String type) {
      this.type = type;
   }
   public Boolean getSolved() {
      return solved;
   }
   public void setSolved(Boolean solved) {
      this.solved = solved;
   }
   public String getTitle() {
      return title;
   }
   public void setTitle(String title) {
      this.title = title;
   }
   public String getContent() {
      return content;
   }
   public void setContent(String content) {
      this.content = content;
   }
   public String getTimeTag() {
      return timeTag;
   }
   public void setTimeTag(String timeTag) {
      this.timeTag = timeTag;
   }
   public String getCreateTime() {
      return createTime;
   }
   public void setCreateTime(String createTime) {
      this.createTime = createTime;
   }
   public JumpDetailV2 getJumpDetail() {
      return jumpDetail;
   }
   public void setJumpDetail(JumpDetailV2 jumpDetail) {
      this.jumpDetail = jumpDetail;
   }
}