?? customerbean.java
字號:
package com.chinamobile.bean;
import java.util.Date;
public class CustomerBean {
private String Customer_ID;
private String ID_Type;
private String ID_Number;
private String Customer_Name;
private Date Customer_Birthday;
private String Customer_Sex;
private String Customer_Address;
public String getCustomer_ID() {
return Customer_ID;
}
public void setCustomer_ID(String customer_ID) {
Customer_ID = customer_ID;
}
public String getID_Type() {
return ID_Type;
}
public void setID_Type(String type) {
ID_Type = type;
}
public String getID_Number() {
return ID_Number;
}
public void setID_Number(String number) {
ID_Number = number;
}
public String getCustomer_Name() {
return Customer_Name;
}
public void setCustomer_Name(String customer_Name) {
Customer_Name = customer_Name;
}
public Date getCustomer_Birthday() {
return Customer_Birthday;
}
public void setCustomer_Birthday(Date customer_Birthday) {
Customer_Birthday = customer_Birthday;
}
public String getCustomer_Sex() {
return Customer_Sex;
}
public void setCustomer_Sex(String customer_Sex) {
Customer_Sex = customer_Sex;
}
public String getCustomer_Address() {
return Customer_Address;
}
public void setCustomer_Address(String customer_Address) {
Customer_Address = customer_Address;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -