booksvo.java

来自「使用jdbc作的一个图书馆管理系统」· Java 代码 · 共 72 行

JAVA
72
字号
/* * 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 + =
减小字号Ctrl + -
显示快捷键?