|
@ -78,6 +78,7 @@ public class SystemMessageDO extends UuidIdentityEntity {
|
|
|
private Integer state;
|
|
|
private Integer readonly;
|
|
|
private String reason;
|
|
|
private String code;
|
|
|
private String senderPhoto;
|
|
|
@Column(name = "content")
|
|
|
public String getContent() {
|
|
@ -224,4 +225,12 @@ public class SystemMessageDO extends UuidIdentityEntity {
|
|
|
public void setOver(String over) {
|
|
|
this.over = over;
|
|
|
}
|
|
|
|
|
|
public String getCode() {
|
|
|
return code;
|
|
|
}
|
|
|
|
|
|
public void setCode(String code) {
|
|
|
this.code = code;
|
|
|
}
|
|
|
}
|