savefeeditemform.java
来自「openfans 0.1 using: eclipse, maven, s」· Java 代码 · 共 44 行
JAVA
44 行
package org.openfans.web.form;
public class SaveFeedItemForm {
private String title;
private int id;
private String tagStr;
private int type;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getTagStr() {
return tagStr;
}
public void setTagStr(String tagStr) {
this.tagStr = tagStr;
}
public int getType() {
return type;
}
public void setType(int type) {
this.type = type;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?