点赞推送必要字段
This commit is contained in:
parent
cdd5cbcfd9
commit
7c57ee167f
@ -48,5 +48,8 @@ public class FollowDto {
|
|||||||
@ApiModelProperty(value = "创建时间")
|
@ApiModelProperty(value = "创建时间")
|
||||||
private Date createTime;
|
private Date createTime;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "0发送 1已读")
|
||||||
|
@TableField("MESSAGE_STATUS")
|
||||||
|
private Integer messageStatus;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -51,4 +51,9 @@ public class FollowVo {
|
|||||||
|
|
||||||
private Boolean isFollowMe = Boolean.FALSE;
|
private Boolean isFollowMe = Boolean.FALSE;
|
||||||
private Boolean isFollow = Boolean.FALSE;
|
private Boolean isFollow = Boolean.FALSE;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "0发送 1已读")
|
||||||
|
@TableField("MESSAGE_STATUS")
|
||||||
|
private Integer messageStatus;
|
||||||
}
|
}
|
||||||
|
@ -57,4 +57,7 @@ public class Follow implements Serializable {
|
|||||||
private Date createTime;
|
private Date createTime;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "0发送 1已读")
|
||||||
|
@TableField("MESSAGE_STATUS")
|
||||||
|
private Integer messageStatus;
|
||||||
}
|
}
|
||||||
|
@ -103,4 +103,7 @@ public class ReplyDto {
|
|||||||
//传入此参数 如果你点赞了会显示相应状态
|
//传入此参数 如果你点赞了会显示相应状态
|
||||||
private String followId;
|
private String followId;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "0发送 1已读")
|
||||||
|
@TableField("MESSAGE_STATUS")
|
||||||
|
private Integer messageStatus;
|
||||||
}
|
}
|
||||||
|
@ -104,4 +104,7 @@ public class ReplyVo {
|
|||||||
private Boolean isUp = Boolean.FALSE;
|
private Boolean isUp = Boolean.FALSE;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "0发送 1已读")
|
||||||
|
@TableField("MESSAGE_STATUS")
|
||||||
|
private Integer messageStatus;
|
||||||
}
|
}
|
||||||
|
@ -118,4 +118,7 @@ public class Reply implements Serializable {
|
|||||||
private String avatarUrl;
|
private String avatarUrl;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "0发送 1已读")
|
||||||
|
@TableField("MESSAGE_STATUS")
|
||||||
|
private Integer messageStatus;
|
||||||
}
|
}
|
||||||
|
@ -52,4 +52,7 @@ public class StarNotesDto {
|
|||||||
private Date createTime;
|
private Date createTime;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "0发送 1已读")
|
||||||
|
@TableField("MESSAGE_STATUS")
|
||||||
|
private Integer messageStatus;
|
||||||
}
|
}
|
||||||
|
@ -48,4 +48,7 @@ public class StarNotesVo {
|
|||||||
private Date createTime;
|
private Date createTime;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "0发送 1已读")
|
||||||
|
@TableField("MESSAGE_STATUS")
|
||||||
|
private Integer messageStatus;
|
||||||
}
|
}
|
||||||
|
@ -59,4 +59,7 @@ public class StarNotes implements Serializable {
|
|||||||
private Date createTime;
|
private Date createTime;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "0发送 1已读")
|
||||||
|
@TableField("MESSAGE_STATUS")
|
||||||
|
private Integer messageStatus;
|
||||||
}
|
}
|
||||||
|
@ -51,5 +51,8 @@ public class UpNotesDto {
|
|||||||
@ApiModelProperty(value = "创建时间")
|
@ApiModelProperty(value = "创建时间")
|
||||||
private Date createTime;
|
private Date createTime;
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "0发送 1已读")
|
||||||
|
@TableField("MESSAGE_STATUS")
|
||||||
|
private Integer messageStatus;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -50,4 +50,7 @@ public class UpNotesVo {
|
|||||||
private Date createTime;
|
private Date createTime;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "0发送 1已读")
|
||||||
|
@TableField("MESSAGE_STATUS")
|
||||||
|
private Integer messageStatus;
|
||||||
}
|
}
|
||||||
|
@ -59,4 +59,7 @@ public class UpNotes implements Serializable {
|
|||||||
private Date createTime;
|
private Date createTime;
|
||||||
|
|
||||||
|
|
||||||
|
@ApiModelProperty(value = "0发送 1已读")
|
||||||
|
@TableField("MESSAGE_STATUS")
|
||||||
|
private Integer messageStatus;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user