customer.java

来自「hibernate 开源框架的代码 jar包希望大家能喜欢」· Java 代码 · 共 74 行

JAVA
74
字号
//$Id: Customer.java 4806 2004-11-25 14:37:00Z steveebersole $package org.hibernate.test.cid;import java.util.ArrayList;import java.util.List;import java.util.GregorianCalendar;import java.math.BigDecimal;/** * @author Gavin King */public class Customer {	private String customerId;	private String name;	private String address;	private List orders = new ArrayList();	/**	 * @return Returns the address.	 */	public String getAddress() {		return address;	}	/**	 * @param address The address to set.	 */	public void setAddress(String address) {		this.address = address;	}	/**	 * @return Returns the customerId.	 */	public String getCustomerId() {		return customerId;	}	/**	 * @param customerId The customerId to set.	 */	public void setCustomerId(String customerId) {		this.customerId = customerId;	}	/**	 * @return Returns the name.	 */	public String getName() {		return name;	}	/**	 * @param name The name to set.	 */	public void setName(String name) {		this.name = name;	}	/**	 * @return Returns the orders.	 */	public List getOrders() {		return orders;	}	/**	 * @param orders The orders to set.	 */	public void setOrders(List orders) {		this.orders = orders;	}	public Order generateNewOrder(BigDecimal total) {		Order order = new Order(this);		order.setOrderDate( new GregorianCalendar() );		order.setTotal( total );		return order;	}}

⌨️ 快捷键说明

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