com.frameworkset.common.poolman.sql.Sequence Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bboss-persistent Show documentation
Show all versions of bboss-persistent Show documentation
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