order.java

来自「精通从JavaScript到Jsp范例程序设计」· Java 代码 · 共 62 行

JAVA
62
字号
package xbook.bookstore ;

import java.util.HashSet;

public class order{
  
  private String id = null;
	private String[] book_id = null;
	private String[] name = null;
	private String[] price = null;
	private String[] amount = null;
	private int[] mark = null;
	
	public void setId( String id ){
		this.id = id;
	}
	
	public String getId(){
		return this.id;
	}
	
	public void setBook_id( String[] book_id ){
		this.book_id = book_id;
	}
	
	public String[] getBook_id(){
		return this.book_id;
	}
	
	public void setName( String[] name ){
		this.name = name;
	}
	
	public String[] getName(){
		return this.name;
	}
	
	public void setPrice( String[] price ){
		this.price = price;		
	}
	
	public String[] getPrice(){
		return this.price;
	}
		
	public void setAmount( String[] amount ){
		this.amount = amount;
	}
	
	public String[] getAmount(){
		return this.amount;
	}
	
	public void setMark( int[] mark ){
	this.mark = mark;
	}
	
	public int[] getMark(){
		return this.mark;
	}
	
}

⌨️ 快捷键说明

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