diff --git a/src/main/java/org/ntlab/acanthus_server/entities/FollowAddJson.java b/src/main/java/org/ntlab/acanthus_server/entities/FollowAddJson.java index 741246c..fdfc810 100644 --- a/src/main/java/org/ntlab/acanthus_server/entities/FollowAddJson.java +++ b/src/main/java/org/ntlab/acanthus_server/entities/FollowAddJson.java @@ -15,6 +15,10 @@ this.followUid = followAccount.getUid(); } + public String getMessage() { + return message; + } + public Integer getUid() { return uid; } @@ -31,4 +35,7 @@ this.followUid = followUid; } + public void setMessage(String message) { + this.message = message; + } }