cn.sylinx.hbatis.plugin.optlock.OptimisticLockBase 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;
import java.lang.reflect.Field;
public class OptimisticLockBase {
private Field versionField;
private String versionFieldAttr;
public Field getVersionField() {
return versionField;
}
public void setVersionField(Field versionField) {
this.versionField = versionField;
}
public String getVersionFieldAttr() {
return versionFieldAttr;
}
public void setVersionFieldAttr(String versionFieldAttr) {
this.versionFieldAttr = versionFieldAttr;
}
}