📄 crmentcredit.java
字号:
package com.csu.crm.common.vo;
import java.util.HashSet;
import java.util.Set;
/**
* CrmEntCredit generated by MyEclipse Persistence Tools
*/
public class CrmEntCredit implements java.io.Serializable {
// Fields
private String creditId;
private String credit;
private String description;
private Set crmCustomers = new HashSet(0);
// Constructors
/** default constructor */
public CrmEntCredit() {
}
/** full constructor */
public CrmEntCredit(String credit, String description, Set crmCustomers) {
this.credit = credit;
this.description = description;
this.crmCustomers = crmCustomers;
}
// Property accessors
public String getCreditId() {
return this.creditId;
}
public void setCreditId(String creditId) {
this.creditId = creditId;
}
public String getCredit() {
return this.credit;
}
public void setCredit(String credit) {
this.credit = credit;
}
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -