|
|
|
@ -100,6 +100,14 @@ public class SysMessage extends BaseBean {
|
|
|
|
|
@JsonSerialize(using = ToStringSerializer.class)
|
|
|
|
|
private Long readCount;
|
|
|
|
|
|
|
|
|
|
public long getReadCountVal(){
|
|
|
|
|
if(readCount == null){
|
|
|
|
|
return 0;
|
|
|
|
|
} else {
|
|
|
|
|
return readCount.longValue();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public SysMessage() {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|