📄 url.java
字号:
package com.booksearch.orm;
public class Url {
private Long id;
/*网站名称*/
private String webname;
/*网站主机地址*/
private String website;
/*网站首页*/
private String searchpage;
/*高级搜索首页*/
private String advancedPage;
/*高级搜索中图书名对应的参数*/
private String bookName;
/*高级搜索中图书作者对应的参数*/
private String bookAuthor;
/*高级搜索中图书出版社对应的参数*/
private String bookPublisher;
/*高级搜索中图书isbn对应的参数*/
private String bookISBN;
/*高级搜索中最低价格对应的参数*/
private String minPrice;
/*高级搜索中最高价格对应的参数*/
private String maxPrice;
/*高级搜索中起始出版年对应的参数*/
private String publishUpYear;
/*高级搜索中起始出版月对应的参数*/
private String publishUpMonth;
/*高级搜索中终止出版年对应的参数*/
private String publishDownYear;
/*高级搜索中出版月对应的参数*/
private String publishDownMonth;
/*基本搜索中的关键字*/
private String keyword;
public String getBookAuthor() {
return bookAuthor;
}
public void setBookAuthor(String bookAuthor) {
this.bookAuthor = bookAuthor;
}
public String getBookISBN() {
return bookISBN;
}
public void setBookISBN(String bookISBN) {
this.bookISBN = bookISBN;
}
public String getBookName() {
return bookName;
}
public void setBookName(String bookName) {
this.bookName = bookName;
}
public String getBookPublisher() {
return bookPublisher;
}
public void setBookPublisher(String bookPublisher) {
this.bookPublisher = bookPublisher;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String getKeyword() {
return keyword;
}
public void setKeyword(String keyword) {
this.keyword = keyword;
}
public String getMaxPrice() {
return maxPrice;
}
public void setMaxPrice(String maxPrice) {
this.maxPrice = maxPrice;
}
public String getMinPrice() {
return minPrice;
}
public void setMinPrice(String minPrice) {
this.minPrice = minPrice;
}
public String getPublishDownMonth() {
return publishDownMonth;
}
public void setPublishDownMonth(String publishDownMonth) {
this.publishDownMonth = publishDownMonth;
}
public String getPublishDownYear() {
return publishDownYear;
}
public void setPublishDownYear(String publishDownYear) {
this.publishDownYear = publishDownYear;
}
public String getPublishUpMonth() {
return publishUpMonth;
}
public void setPublishUpMonth(String publishUpMonth) {
this.publishUpMonth = publishUpMonth;
}
public String getPublishUpYear() {
return publishUpYear;
}
public void setPublishUpYear(String publishUpYear) {
this.publishUpYear = publishUpYear;
}
public String getSearchpage() {
return searchpage;
}
public void setSearchpage(String searchpage) {
this.searchpage = searchpage;
}
public String getWebname() {
return webname;
}
public void setWebname(String webname) {
this.webname = webname;
}
public String getWebsite() {
return website;
}
public void setWebsite(String website) {
this.website = website;
}
public String getAdvancedPage() {
return advancedPage;
}
public void setAdvancedPage(String advancedPage) {
this.advancedPage = advancedPage;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -