book.java

来自「这是一个网上书站的例子」· Java 代码 · 共 56 行

JAVA
56
字号
package com.cart;



public class Book {
	String bookname;
	float price;
	
	float agio;
	
	
	int bookid;
	public Book()
	{
		
	}
	public Book(String bookname, float price, float agio, String press, String pressdate, String ibsn, String content) {
		super();
		this.bookname = bookname;
		this.price = price;
		
		this.agio = agio;
	
		
	}
	public float getAgio() {
		return agio;
	}
	public void setAgio(float agio) {
		this.agio = agio;
	}
	public int getBookid() {
		return bookid;
	}
	public void setBookid(int bookid) {
		this.bookid = bookid;
	}
	public String getBookname() {
		return bookname;
	}
	public void setBookname(String bookname) {
		this.bookname = bookname;
	}
	
	
	
	public float getPrice() {
		return price;
	}
	public void setPrice(float price) {
		this.price = price;
	}
	

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?