java实现的可配置的工作流引擎,采用jsp+javabean实现

源代码在线查看: resobjectre.java

软件大小: 10703 K
上传用户: philipsx
关键词: javabean java jsp 可配置
下载地址: 免注册下载 普通下载 VIP

相关代码

				package com.hongsoft.res.pojo;
				
				import java.io.Serializable;
				
				public class ResObjectRe implements Serializable {
				
				    private static final long serialVersionUID = -2877361840859370492L;
				
				    private long parent_id;
				
				    private long child_id;
				
				    public ResObjectRe() {
				    }
				
				    public boolean equals(Object other) {
				        if (other == null || !(other instanceof ResObjectRe))
				            return false;
				        return (this.parent_id == ((ResObjectRe) other).parent_id) && (this.child_id == ((ResObjectRe) other).child_id);
				    }
				
				    public void setParent_id(long parent_id) {
				        this.parent_id = parent_id;
				    }
				
				    public long getParent_id() {
				        return parent_id;
				    }
				
				    public void setChild_id(long child_id) {
				        this.child_id = child_id;
				    }
				
				    public long getChild_id() {
				        return child_id;
				    }
				
				}			

相关资源