cn.sylinx.hbatis.plugin.optlock.OptimisticLockUpdate 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 OptimisticLockUpdate extends OptimisticLockBase {
private Number oldVersionValue;
private Number newVersionValue;
public Number getOldVersionValue() {
return oldVersionValue;
}
public void setOldVersionValue(Number oldVersionValue) {
this.oldVersionValue = oldVersionValue;
}
public Number getNewVersionValue() {
return newVersionValue;
}
public void setNewVersionValue(Number newVersionValue) {
this.newVersionValue = newVersionValue;
}
}