crmarealev.java

来自「基于SSH (struts+spring+hibernate)框架设计的 C」· Java 代码 · 共 55 行

JAVA
55
字号
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 + =
减小字号Ctrl + -
显示快捷键?