package com.scitel.gdnumcommon.entity;
import org.apache.commons.lang.builder.*;
import java.io.Serializable;
/**
* VO基础类,在系统中希望VO与PO分离
i
* @author peidw
*
*/
public abstract class BaseVO implements Serializable{
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
public boolean equals(Object obj) {
return EqualsBuilder.reflectionEquals(this,obj);
}
public int hashCode() {
return HashCodeBuilder.reflectionHashCode(this);
}
}
posted on 2006-11-20 17:31
有猫相伴的日子 阅读(545)
评论(0) 编辑 收藏 所属分类:
j2ee