|
@@ -25,6 +25,9 @@ public class SysNoticeResult extends SysNotice implements Serializable {
|
|
|
@ApiModelProperty(value = "创建人")
|
|
|
private String createName;
|
|
|
|
|
|
+ @ApiModelProperty(value = "回执进度")
|
|
|
+ private String readCount;
|
|
|
+
|
|
|
public String getCreateName() {
|
|
|
return createName;
|
|
|
}
|
|
@@ -32,4 +35,12 @@ public class SysNoticeResult extends SysNotice implements Serializable {
|
|
|
public void setCreateName(String createName) {
|
|
|
this.createName = createName;
|
|
|
}
|
|
|
+
|
|
|
+ public String getReadCount() {
|
|
|
+ return readCount;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setReadCount(String readCount) {
|
|
|
+ this.readCount = readCount;
|
|
|
+ }
|
|
|
}
|