
org.swiftboot.data.model.entity.LogicalDeletePersistable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swiftboot-data Show documentation
Show all versions of swiftboot-data Show documentation
Data access component based on Spring-Data-JPA
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