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

📄 ibusinessobject.java

📁 struts+spring+hibernate自创框架
💻 JAVA
字号:
package com.pegasus.framework.pojo;

import com.pegasus.framework.exception.POJOException;

public interface IBusinessObject {


    /**
     * @return Returns the id.
     */
    public Long getId();

    /**
     * @param id The id to set.
     */
    public void setId(Long id);
    
    public Integer getVersion();

	/**
	 * @param version The version to set.
	 */
	public void setVersion(Integer version);
	
	/**
	 * @return Returns the deleted.
	 */
	public String getDeleted();

	public void setDeleted(String deleted);
    
    public IBusinessObject clone(IBusinessObject object)  throws POJOException;
    public Object clone();
    public String toXMLString();
    
}

⌨️ 快捷键说明

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