?? 100c0192e012001e1c109cf6c0702dd1
字號:
package com.model;
public class Messages {
private int id;
private String title;
private String content;
private boolean isReaded;
private User userId;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public boolean isReaded() {
return isReaded;
}
public void setReaded(boolean isReaded) {
this.isReaded = isReaded;
}
public User getUserId() {
return userId;
}
public void setUserId(User userId) {
this.userId = userId;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -