📄 customer.java
字号:
package com.iplan.portal.order.pojo;
import java.util.Date;
/**
* http://www.hao-se.cn
*
* @author ws
*/
public class Customer {
private String guid;
private String customerName;
private String address;
private String areaid;
private String userId;
private Date createtime;
private Date updatetime;
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public String getCustomerName() {
return customerName;
}
public void setCustomerName(String customerName) {
this.customerName = customerName;
}
public String getGuid() {
return guid;
}
public void setGuid(String id) {
this.guid = id;
}
public String getAreaid() {
return areaid;
}
public void setAreaid(String areaid) {
this.areaid = areaid;
}
public String getUserId() {
return userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public Date getCreatetime() {
return createtime;
}
public void setCreatetime(Date createtime) {
this.createtime = createtime;
}
public Date getUpdatetime() {
return updatetime;
}
public void setUpdatetime(Date updatetime) {
this.updatetime = updatetime;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -