📄 crmarealev.java
字号:
package com.csu.crm.common.vo;
/**
* CrmAreaLev generated by MyEclipse Persistence Tools
*/
public class CrmAreaLev implements java.io.Serializable {
// Fields
private String areaLevId;
private String areaLev;
private String description;
// Constructors
/** default constructor */
public CrmAreaLev() {
}
/** full constructor */
public CrmAreaLev(String areaLev, String description) {
this.areaLev = areaLev;
this.description = description;
}
// Property accessors
public String getAreaLevId() {
return this.areaLevId;
}
public void setAreaLevId(String areaLevId) {
this.areaLevId = areaLevId;
}
public String getAreaLev() {
return this.areaLev;
}
public void setAreaLev(String areaLev) {
this.areaLev = areaLev;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -