📄 booksvo.java
字号:
/* * To change this template, choose Tools | Templates * and open the template in the editor. */package lib_jdbc.vo;/** * * @author Edwen */public class BooksVO { private String bookID; private String title; private String author; private String publisher; private String ISBN; private Double price; private Integer total; private Integer suppliedNum; public String getBookID() { return bookID; } public void setBookID(String bookID) { this.bookID = bookID; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getAuthor() { return author; } public void setAuthor(String author) { this.author = author; } public String getPublisher() { return publisher; } public void setPublisher(String publisher) { this.publisher = publisher; } public String getISBN() { return ISBN; } public void setISBN(String isbn) { ISBN = isbn; } public Double getPrice() { return price; } public void setPrice(Double price) { this.price = price; } public Integer getTotal() { return total; } public void setTotal(Integer total) { this.total = total; } public Integer getSuppliedNum() { return suppliedNum; } public void setSuppliedNum(Integer suppliedNum) { this.suppliedNum = suppliedNum; } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -