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

cn.sylinx.hbatis.plugin.optlock.OptimisticLockUpdate Maven / Gradle / Ivy

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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy