You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cloudnote_server/src/main/java/com/bupt/note/dto/QueryPaper.java

79 lines
1.4 KiB

package com.bupt.note.dto;
/**
* 论文查询
*/
public class QueryPaper {
private String title;
private String type;
private String author;
private String profession;
private String tag;
private Integer startYear;
private Integer endYear;
private Boolean own=false;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}
public String getProfession() {
return profession;
}
public void setProfession(String profession) {
this.profession = profession;
}
public String getTag() {
return tag;
}
public void setTag(String tag) {
this.tag = tag;
}
public Integer getStartYear() {
return startYear;
}
public void setStartYear(Integer startYear) {
this.startYear = startYear;
}
public Integer getEndYear() {
return endYear;
}
public void setEndYear(Integer endYear) {
this.endYear = endYear;
}
public Boolean getOwn() {
return own;
}
public void setOwn(Boolean own) {
this.own = own;
}
}