📄 customerbean.java
字号:
package com.oristand.service;
public class CustomerBean {
private String Customer_ID="";
private String ID_Type="";
private String ID_Number="";
private String Customer_Name="";
private String Customer_Birthday="";
private String Customer_Sex="";
private String Customer_Address="";
public String getCustomer_Address() {
return Customer_Address;
}
public void setCustomer_Address(String customer_Address) {
Customer_Address = customer_Address;
}
public String getCustomer_Birthday() {
return Customer_Birthday;
}
public void setCustomer_Birthday(String customer_Birthday) {
Customer_Birthday = customer_Birthday;
}
public String getCustomer_ID() {
return Customer_ID;
}
public void setCustomer_ID(String customer_ID) {
Customer_ID = customer_ID;
}
public String getCustomer_Name() {
return Customer_Name;
}
public void setCustomer_Name(String customer_Name) {
Customer_Name = customer_Name;
}
public String getCustomer_Sex() {
return Customer_Sex;
}
public void setCustomer_Sex(String customer_Sex) {
Customer_Sex = customer_Sex;
}
public String getID_Number() {
return ID_Number;
}
public void setID_Number(String number) {
ID_Number = number;
}
public String getID_Type() {
return ID_Type;
}
public void setID_Type(String type) {
ID_Type = type;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -