cn.sylinx.hbatis.ext.model.VersionBaseModel 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.ext.model;
import cn.sylinx.hbatis.db.mapper.anno.ColumnDesc;
import cn.sylinx.hbatis.db.mapper.anno.Version;
/**
* 带版本号的实体
*
* @author johnhan
*
*/
public class VersionBaseModel extends BaseModel {
@Version
@ColumnDesc(desc = "版本号")
private Long recordVersion;
public Long getRecordVersion() {
return recordVersion;
}
public void setRecordVersion(Long recordVersion) {
this.recordVersion = recordVersion;
}
}