All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.frameworkset.common.poolman.sql.Sequence Maven / Gradle / Ivy

Go to download

bboss is a j2ee framework include aop/ioc,mvc,persistent,taglib,rpc,event ,bean-xml serializable and so on.http://www.bbossgroups.com

The newest version!
package com.frameworkset.common.poolman.sql;

import java.io.Serializable;

/**
 * 主键的序号和当前值
 * @author biaoping.yin
 *
 */
public class Sequence {
	private Serializable primaryKey;
	private long sequence;
	public Serializable getPrimaryKey() {
		return primaryKey;
	}
	public void setPrimaryKey(Serializable primaryKey) {
		this.primaryKey = primaryKey;
	}
	public long getSequence() {
		return sequence;
	}
	public void setSequence(long sequence) {
		this.sequence = sequence;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy