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

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

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

/**
 * 具有逻辑删除字段的可持久化对象
 *
 * @author swiftech
 * @since 2.1.0
 */
public interface LogicalDeletePersistable extends IdPersistable {

    /**
     * 获取记录是否逻辑删除
     *
     * @return
     */
    T getIsDelete();

    /**
     * 设置记录为逻辑删除
     */
    void setIsDelete(T isDelete);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy