25 lines
570 B
Java
25 lines
570 B
Java
package cn.itcast.message;
|
|
|
|
import lombok.Data;
|
|
import lombok.ToString;
|
|
|
|
@Data
|
|
@ToString(callSuper = true)
|
|
public class GroupChatResponseMessage extends AbstractResponseMessage {
|
|
private String from;
|
|
private String content;
|
|
|
|
public GroupChatResponseMessage(boolean success, String reason) {
|
|
super(success, reason);
|
|
}
|
|
|
|
public GroupChatResponseMessage(String from, String content) {
|
|
this.from = from;
|
|
this.content = content;
|
|
}
|
|
@Override
|
|
public int getMessageType() {
|
|
return GroupChatResponseMessage;
|
|
}
|
|
}
|