customer.java
来自「webwork in action 下载。」· 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 + -
显示快捷键?