cn.sylinx.hbatis.plugin.optlock.OptimisticLockInsert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hbatis-core Show documentation
Show all versions of hbatis-core Show documentation
hbatis is a simple orm framework
The newest version!
package cn.sylinx.hbatis.plugin.optlock;
public class OptimisticLockInsert extends OptimisticLockBase {
private Number initVersionValue;
public Number getInitVersionValue() {
return initVersionValue;
}
public void setInitVersionValue(Number initVersionValue) {
this.initVersionValue = initVersionValue;
}
}