⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 valueobject.java

📁 OBPM是一个开源
💻 JAVA
字号:
package cn.myapps.base.dao;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

/**
 * The base value object.
 */
public abstract class ValueObject implements Serializable {
	private List authority = new ArrayList();

	private String sortId;
	
	private String applicationid;
	/** 
	 * @return The id
	 */
	public abstract String getId();
	
	/**
	 * @param id The id.
	 */
	public abstract void setId(String id);

	/**
	 * @return Returns the authority.
	 */
	public List getAuthority() {
		return authority;
	}
	/**
	 * @param authority The authority to set.
	 */
	public void setAuthority(List authority) {
		this.authority = authority;
	}

	/**
	 * @return java.lang.String
	 * @hibernate.property column="SORTID"
	 */
	public String getSortId() {
		return sortId;
	}

	public void setSortId(String sortId) {
		this.sortId = sortId;
	}

	/**
	 * @return java.lang.String
	 * @hibernate.property column="APPLICATIONID"
	 */
	public String getApplicationid() {
		return applicationid;
	}

	public void setApplicationid(String applicationid) {
		this.applicationid = applicationid;
	}
}

⌨️ 快捷键说明

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