parent
a2458e3871
commit
493605c56c
@ -1,17 +0,0 @@ |
|||||||
package com.bupt.note.Properties; |
|
||||||
|
|
||||||
import org.springframework.boot.context.properties.ConfigurationProperties; |
|
||||||
|
|
||||||
@ConfigurationProperties(prefix = "file") |
|
||||||
public class FileProperties { |
|
||||||
|
|
||||||
private String uploadDir; |
|
||||||
|
|
||||||
public String getUploadDir() { |
|
||||||
return uploadDir; |
|
||||||
} |
|
||||||
|
|
||||||
public void setUploadDir(String uploadDir) { |
|
||||||
this.uploadDir = uploadDir; |
|
||||||
} |
|
||||||
} |
|
@ -0,0 +1,25 @@ |
|||||||
|
package com.bupt.note.dto; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
public class Page<T> { |
||||||
|
private List<T> data; |
||||||
|
|
||||||
|
private Long total; |
||||||
|
|
||||||
|
public List<T> getData() { |
||||||
|
return data; |
||||||
|
} |
||||||
|
|
||||||
|
public void setData(List<T> data) { |
||||||
|
this.data = data; |
||||||
|
} |
||||||
|
|
||||||
|
public Long getTotal() { |
||||||
|
return total; |
||||||
|
} |
||||||
|
|
||||||
|
public void setTotal(Long total) { |
||||||
|
this.total = total; |
||||||
|
} |
||||||
|
} |
@ -0,0 +1,70 @@ |
|||||||
|
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; |
||||||
|
|
||||||
|
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; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue