点赞推送必要字段

This commit is contained in:
wangxulei 2025-01-08 13:47:28 +08:00
parent cdd5cbcfd9
commit 7c57ee167f
12 changed files with 38 additions and 0 deletions

View File

@ -48,5 +48,8 @@ public class FollowDto {
@ApiModelProperty(value = "创建时间")
private Date createTime;
@ApiModelProperty(value = "0发送 1已读")
@TableField("MESSAGE_STATUS")
private Integer messageStatus;
}

View File

@ -51,4 +51,9 @@ public class FollowVo {
private Boolean isFollowMe = Boolean.FALSE;
private Boolean isFollow = Boolean.FALSE;
@ApiModelProperty(value = "0发送 1已读")
@TableField("MESSAGE_STATUS")
private Integer messageStatus;
}

View File

@ -57,4 +57,7 @@ public class Follow implements Serializable {
private Date createTime;
@ApiModelProperty(value = "0发送 1已读")
@TableField("MESSAGE_STATUS")
private Integer messageStatus;
}

View File

@ -103,4 +103,7 @@ public class ReplyDto {
//传入此参数 如果你点赞了会显示相应状态
private String followId;
@ApiModelProperty(value = "0发送 1已读")
@TableField("MESSAGE_STATUS")
private Integer messageStatus;
}

View File

@ -104,4 +104,7 @@ public class ReplyVo {
private Boolean isUp = Boolean.FALSE;
@ApiModelProperty(value = "0发送 1已读")
@TableField("MESSAGE_STATUS")
private Integer messageStatus;
}

View File

@ -118,4 +118,7 @@ public class Reply implements Serializable {
private String avatarUrl;
@ApiModelProperty(value = "0发送 1已读")
@TableField("MESSAGE_STATUS")
private Integer messageStatus;
}

View File

@ -52,4 +52,7 @@ public class StarNotesDto {
private Date createTime;
@ApiModelProperty(value = "0发送 1已读")
@TableField("MESSAGE_STATUS")
private Integer messageStatus;
}

View File

@ -48,4 +48,7 @@ public class StarNotesVo {
private Date createTime;
@ApiModelProperty(value = "0发送 1已读")
@TableField("MESSAGE_STATUS")
private Integer messageStatus;
}

View File

@ -59,4 +59,7 @@ public class StarNotes implements Serializable {
private Date createTime;
@ApiModelProperty(value = "0发送 1已读")
@TableField("MESSAGE_STATUS")
private Integer messageStatus;
}

View File

@ -51,5 +51,8 @@ public class UpNotesDto {
@ApiModelProperty(value = "创建时间")
private Date createTime;
@ApiModelProperty(value = "0发送 1已读")
@TableField("MESSAGE_STATUS")
private Integer messageStatus;
}

View File

@ -50,4 +50,7 @@ public class UpNotesVo {
private Date createTime;
@ApiModelProperty(value = "0发送 1已读")
@TableField("MESSAGE_STATUS")
private Integer messageStatus;
}

View File

@ -59,4 +59,7 @@ public class UpNotes implements Serializable {
private Date createTime;
@ApiModelProperty(value = "0发送 1已读")
@TableField("MESSAGE_STATUS")
private Integer messageStatus;
}