crmentproperty.java
来自「基于SSH (struts+spring+hibernate)框架设计的 C」· Java 代码 · 共 69 行
JAVA
69 行
package com.csu.crm.common.vo;
import java.util.HashSet;
import java.util.Set;
/**
* CrmEntProperty generated by MyEclipse Persistence Tools
*/
public class CrmEntProperty implements java.io.Serializable {
// Fields
private String propertyId;
private String property;
private String description;
private Set crmCustomers = new HashSet(0);
// Constructors
/** default constructor */
public CrmEntProperty() {
}
/** full constructor */
public CrmEntProperty(String property, String description, Set crmCustomers) {
this.property = property;
this.description = description;
this.crmCustomers = crmCustomers;
}
// Property accessors
public String getPropertyId() {
return this.propertyId;
}
public void setPropertyId(String propertyId) {
this.propertyId = propertyId;
}
public String getProperty() {
return this.property;
}
public void setProperty(String property) {
this.property = property;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Set getCrmCustomers() {
return this.crmCustomers;
}
public void setCrmCustomers(Set crmCustomers) {
this.crmCustomers = crmCustomers;
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?