📄 crmarea.java
字号:
package com.csu.crm.common.vo;
import java.util.HashSet;
import java.util.Set;
/**
* CrmArea generated by MyEclipse Persistence Tools
*/
public class CrmArea implements java.io.Serializable {
// Fields
private String areaId;
private CrmProvince crmProvince;
private String city;
private String postalcode;
private String areaLevId;
private Set crmCustomers = new HashSet(0);
// Constructors
/** default constructor */
public CrmArea() {
}
/** full constructor */
public CrmArea(CrmProvince crmProvince, String city, String postalcode,
String areaLevId, Set crmCustomers) {
this.crmProvince = crmProvince;
this.city = city;
this.postalcode = postalcode;
this.areaLevId = areaLevId;
this.crmCustomers = crmCustomers;
}
// Property accessors
public String getAreaId() {
return this.areaId;
}
public void setAreaId(String areaId) {
this.areaId = areaId;
}
public CrmProvince getCrmProvince() {
return this.crmProvince;
}
public void setCrmProvince(CrmProvince crmProvince) {
this.crmProvince = crmProvince;
}
public String getCity() {
return this.city;
}
public void setCity(String city) {
this.city = city;
}
public String getPostalcode() {
return this.postalcode;
}
public void setPostalcode(String postalcode) {
this.postalcode = postalcode;
}
public String getAreaLevId() {
return this.areaLevId;
}
public void setAreaLevId(String areaLevId) {
this.areaLevId = areaLevId;
}
public Set getCrmCustomers() {
return this.crmCustomers;
}
public void setCrmCustomers(Set crmCustomers) {
this.crmCustomers = crmCustomers;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -