📄 postsinfo.java
字号:
package com.entity;
import java.io.Serializable;
import java.util.HashSet;
import java.util.Set;
public class PostsInfo implements Serializable{
/**
*
*/
private static final long serialVersionUID = 1L;
private int postsID;
private int postsIndify;
private String postsName;
private String postsIntroduction;
private int postsNeeds;
private String postsDep;
private String postsTreatment;
private int postsNeedNum;
private String testContest;
private String testNote;
private String postsRemark;
private Set appInfos = new HashSet();
public String getPostsDep() {
return postsDep;
}
public void setPostsDep(String postsDep) {
this.postsDep = postsDep;
}
public int getPostsID() {
return postsID;
}
public void setPostsID(int postsID) {
this.postsID = postsID;
}
public String getPostsIntroduction() {
return postsIntroduction;
}
public void setPostsIntroduction(String postsIntroduction) {
this.postsIntroduction = postsIntroduction;
}
public int getPostsNeedNum() {
return postsNeedNum;
}
public void setPostsNeedNum(int postsNeedNum) {
this.postsNeedNum = postsNeedNum;
}
public String getPostsTreatment() {
return postsTreatment;
}
public void setPostsTreatment(String postsTreatment) {
this.postsTreatment = postsTreatment;
}
public String getTestContest() {
return testContest;
}
public void setTestContest(String testContest) {
this.testContest = testContest;
}
public String getTestNote() {
return testNote;
}
public void setTestNote(String testNote) {
this.testNote = testNote;
}
public Set getAppInfos() {
return appInfos;
}
public void setAppInfos(Set appInfos) {
this.appInfos = appInfos;
}
public String getPostsName() {
return postsName;
}
public void setPostsName(String postsName) {
this.postsName = postsName;
}
public int getPostsNeeds() {
return postsNeeds;
}
public void setPostsNeeds(int postsNeeds) {
this.postsNeeds = postsNeeds;
}
public String getPostsRemark() {
return postsRemark;
}
public void setPostsRemark(String postsRemark) {
this.postsRemark = postsRemark;
}
public int getPostsIndify() {
return postsIndify;
}
public void setPostsIndify(int postsIndify) {
this.postsIndify = postsIndify;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -