customer.java

来自「hibernate in action 源码 caveatemptor-0.9.」· Java 代码 · 共 26 行

JAVA
26
字号
package org.hibernate.auction.model;

public class Customer {

	private Long id = null;
	private CustomerLocation customerLocation;

	public Customer() {}

	public Long getId() {
		return id;
	}

	public void setId(Long id) {
		this.id = id;
	}

	public CustomerLocation getCustomerLocation() {
		return customerLocation;
	}

	public void setCustomerLocation(CustomerLocation customerLocation) {
		this.customerLocation = customerLocation;
	}
}

⌨️ 快捷键说明

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