|
@@ -21,6 +21,10 @@ public class SysMessageQueryInfo extends QueryInfo {
|
|
|
|
|
|
@ApiModelProperty(value = "消息类型;1,表示短信;2,表示邮件; 3,app推送消息",required = false)
|
|
@ApiModelProperty(value = "消息类型;1,表示短信;2,表示邮件; 3,app推送消息",required = false)
|
|
private Integer type;
|
|
private Integer type;
|
|
|
|
+
|
|
|
|
+ private String group;
|
|
|
|
+
|
|
|
|
+ private Integer readStatus;
|
|
|
|
|
|
public Integer getStatus() {
|
|
public Integer getStatus() {
|
|
return status;
|
|
return status;
|
|
@@ -62,4 +66,20 @@ public class SysMessageQueryInfo extends QueryInfo {
|
|
this.type = type;
|
|
this.type = type;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ public String getGroup() {
|
|
|
|
+ return group;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setGroup(String group) {
|
|
|
|
+ this.group = group;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public Integer getReadStatus() {
|
|
|
|
+ return readStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ public void setReadStatus(Integer readStatus) {
|
|
|
|
+ this.readStatus = readStatus;
|
|
|
|
+ }
|
|
|
|
+
|
|
}
|
|
}
|