📄 customer.java
字号:
package javabean;
import java.util.Date;
public class Customer {
public Customer(){
}
private int customerId;
private String idType;
private String idNumber;
private String customerName;
private Date customerBirthday;
private String customerSex;
private String customerAddress;
public String getCustomerAddress() {
return customerAddress;
}
public void setCustomerAddress(String customerAddress) {
this.customerAddress = customerAddress;
}
public Date getCustomerBirthday() {
return customerBirthday;
}
public void setCustomerBirthday(Date customerBirthday) {
this.customerBirthday = customerBirthday;
}
public int getCustomerId() {
return customerId;
}
public void setCustomerId(int customerId) {
this.customerId = customerId;
}
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public String getCustomerSex() {
return customerSex;
}
public void setCustomerSex(String customerSex) {
this.customerSex = customerSex;
}
public String getIdNumber() {
return idNumber;
}
public void setIdNumber(String idNumber) {
this.idNumber = idNumber;
}
public String getIdType() {
return idType;
}
public void setIdType(String idType) {
this.idType = idType;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -