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

org.swiftboot.data.model.entity.TrxVersionPersistable Maven / Gradle / Ivy

There is a newer version: 2.4.8
Show newest version
package org.swiftboot.data.model.entity;

import java.io.Serializable;

/**
 * 具有事务锁版本号的可持久化对象
 *
 * @author swiftech
 * @since 2.0.0
 */
public interface TrxVersionPersistable extends Serializable {

    /**
     * 获取事务锁版本
     *
     * @return
     */
    Long getTxVersion();

    /**
     * 设置事务锁版本
     *
     * @param version
     */
    void setTxVersion(Long version);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy