multilanguage.java

来自「OBPM是一个开源」· Java 代码 · 共 63 行

JAVA
63
字号
package cn.myapps.core.multilanguage.ejb;

import cn.myapps.base.dao.ValueObject;

/**
 * @hibernate.class table="T_MULTILANGUAGE"
 * @author nicholas
 */
public class MultiLanguage extends ValueObject {

	private String id;

	private int type;

	private String label;

	private String text;

	/**
	 * @hibernate.id column="ID" generator-class="assigned"
	 */
	public String getId() {
		return id;
	}

	public void setId(String id) {
		this.id = id;
	}

	/**
	 * @hibernate.property column="TEXT"
	 */
	public String getText() {
		return text;
	}

	public void setText(String text) {
		this.text = text;
	}

	/**
	 * @hibernate.property column="TYPE"
	 */
	public int getType() {
		return type;
	}

	public void setType(int type) {
		this.type = type;
	}

	/**
	 * @hibernate.property column="LABEL"
	 */
	public String getLabel() {
		return label;
	}

	public void setLabel(String label) {
		this.label = label;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?