📄 customer.java
字号:
package com.utils.model;
public class Customer implements java.io.Serializable{
/**
*
*/
private static final long serialVersionUID = 4314882706413997465L;
private String id;
private String customerName;
private String customerAchor;
private String customerTel;
private String customerAddress;
private String customerEmail;
private String customerNet;
private String customerBusiness;
public Customer(){}
public Customer(String id, String customerName, String customerAchor, String customerTel, String customerAddress, String customerEmail, String customerNet, String customerBusiness) {
super();
this.id = id;
this.customerName = customerName;
this.customerAchor = customerAchor;
this.customerTel = customerTel;
this.customerAddress = customerAddress;
this.customerEmail = customerEmail;
this.customerNet = customerNet;
this.customerBusiness = customerBusiness;
}
public String getCustomerAchor() {
return customerAchor;
}
public void setCustomerAchor(String customerAchor) {
this.customerAchor = customerAchor;
}
public String getCustomerAddress() {
return customerAddress;
}
public void setCustomerAddress(String customerAddress) {
this.customerAddress = customerAddress;
}
public String getCustomerBusiness() {
return customerBusiness;
}
public void setCustomerBusiness(String customerBusiness) {
this.customerBusiness = customerBusiness;
}
public String getCustomerEmail() {
return customerEmail;
}
public void setCustomerEmail(String customerEmail) {
this.customerEmail = customerEmail;
}
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public String getCustomerNet() {
return customerNet;
}
public void setCustomerNet(String customerNet) {
this.customerNet = customerNet;
}
public String getCustomerTel() {
return customerTel;
}
public void setCustomerTel(String customerTel) {
this.customerTel = customerTel;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -