📄 qqpack.java
字号:
package com.sato.pub;
import java.io.Serializable;
public class QQpack implements Serializable{
private PackType type;
private User from;
private User to;
private Object content;
public PackType getType() {
return type;
}
public void setType(PackType type) {
this.type = type;
}
public Object getContent() {
return content;
}
public void setContent(Object content) {
this.content = content;
}
public User getFrom() {
return from;
}
public void setFrom(User from) {
this.from = from;
}
public User getTo() {
return to;
}
public void setTo(User to) {
this.to = to;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -