ibusinessobject.java

来自「struts+spring+hibernate自创框架」· Java 代码 · 共 37 行

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