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

commons.box.app.DataDomain Maven / Gradle / Ivy

The newest version!
package commons.box.app;

/**
 * 基本数据对象,用于数据库存储
 */
public interface DataDomain extends DataObject, DataRecord {
    /**
     * 用于配合 Entity Provider执行时,自生成主键的重置(重试前恢复主键为默认值,以便重新)。
     * 

* 具体由对应的 数据操作服务 实现 *

* 注意,如果需要 retry 此方法必须返回 true(同时如若有自增主键重置逻辑需要在本方法内实现) */ default boolean retryOnCreateFailed() { return false; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy